Hey, 
You can define and implement your methods on the server side, and then 
simply add them in your Proxy class, that's all.

class Meeting  { 
    .... 
    public boolean isStarted() { return getStartTime() != null  );
    public boolean isFinished() { return getStopTime() != null ); 
    .... 
} 

class MeetingProxy extends EntityProxy { 
   public Date getStartTime(); 
   public Date getStopTime(); 
   .... 
   public boolean isStarted();
   public boolean isFinished();
} 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to