Hi all,
I want to call my model class method from an entry point
java code.Such as i want to call a method on the click event of a
button that will save some data to the db.Is it possible with out
RCP.Some thing like the following.
Button iconButton = new Button("Save", new ButtonListenerAdapter()
{
public void onClick(Button button, EventObject e) {
SaveData s = new SaveData()//a model class object
s.save( ); //a method in the model class
}
});
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---