Dear All,

*Defining editor for Recipe with String id & String name*

class Recipe {

  String id;
  String name;

  // getters and setters
}

@Service(Recipe.class)
interface RecipeProxy extends EntiryProxy { ... }

public class RecipeEditor extends Composite implements Editor<RecipeProxy> {

  Label id;
  TextBox name;

  // ... 
}

Is it possible to define an editor for the following recipe class:

class Recipe {

  String id;
  String name;
  List<String> ingredients;

  // getters and setters
}

@Service(Recipe.class)
interface RecipeProxy extends EntiryProxy { ... }

public class RecipeEditor extends Composite implements Editor<RecipeProxy> {

  Label id;
  TextBox name;

  // *"SOS"*
}

Any ideas will be of immense help.

Thanks in advance,
-sowdri-

-- 
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