Index: lutingenerator/src/java/org/codelutin/generator/models/ui/UIModel.java diff -u lutingenerator/src/java/org/codelutin/generator/models/ui/UIModel.java:1.4 lutingenerator/src/java/org/codelutin/generator/models/ui/UIModel.java:1.5 --- lutingenerator/src/java/org/codelutin/generator/models/ui/UIModel.java:1.4 Mon Jun 7 16:10:18 2004 +++ lutingenerator/src/java/org/codelutin/generator/models/ui/UIModel.java Tue Aug 10 17:00:48 2004 @@ -26,9 +26,9 @@ * Created: Jun 2, 2004 * * @author pineau -* @version $Revision: 1.4 $ +* @version $Revision: 1.5 $ * -* Last update : $Date: 2004/06/07 16:10:18 $ +* Last update : $Date: 2004/08/10 17:00:48 $ * by : $Author: mazelier $ * * Abstraction for the root node of ui model trees. @@ -53,7 +53,7 @@ public abstract String getPackage(); /** - * Return the object root defined in this ui model. + * Returns the object root defined in this ui model. * @see UIModelObject * * @return the object root defined in this ui model. Index: lutingenerator/src/java/org/codelutin/generator/models/ui/UIModelEvent.java diff -u lutingenerator/src/java/org/codelutin/generator/models/ui/UIModelEvent.java:1.1 lutingenerator/src/java/org/codelutin/generator/models/ui/UIModelEvent.java:1.2 --- lutingenerator/src/java/org/codelutin/generator/models/ui/UIModelEvent.java:1.1 Thu Jun 3 16:09:08 2004 +++ lutingenerator/src/java/org/codelutin/generator/models/ui/UIModelEvent.java Tue Aug 10 17:00:48 2004 @@ -23,9 +23,9 @@ * * @author Benjamin Poussin * Copyright Code Lutin -* @version $Revision: 1.1 $ +* @version $Revision: 1.2 $ * -* Mise a jour: $Date: 2004/06/03 16:09:08 $ +* Mise a jour: $Date: 2004/08/10 17:00:48 $ * par : $Author: mazelier $ */ @@ -33,11 +33,36 @@ public interface UIModelEvent { // UIModelEvent + /** + * Returns the addListenerMethod of this event + * @return addListenerMethod + */ public abstract String getAddMethod(); + + /** + * Returns the listenerInterface of this event + * @return listenerInterface + */ public abstract String getSource(); + + /** + * Returns the listenerMethodName of this event + * @return listenerMethodName + */ public abstract String getAction(); + + /** + * Returns the handler of this event + * @return handler + */ public abstract String getHandler(); + + /** + * Returns the eventPropertyName of this event + * @return eventPropertyName + */ public abstract String getArgument(); + } // UIModelEvent