Index: lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelChildImpl.java diff -u lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelChildImpl.java:1.1 lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelChildImpl.java:1.2 --- lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelChildImpl.java:1.1 Mon Jun 7 16:11:21 2004 +++ lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelChildImpl.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/07 16:11:21 $ + * Mise a jour: $Date: 2004/08/10 17:00:48 $ * par : $Author: mazelier $ */ @@ -85,6 +85,8 @@ public UIModelConstraint getConstraint() { return constraint; } + + } // UIModelChildImpl Index: lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelConstraintImpl.java diff -u lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelConstraintImpl.java:1.4 lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelConstraintImpl.java:1.5 --- lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelConstraintImpl.java:1.4 Wed Jun 30 13:27:25 2004 +++ lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelConstraintImpl.java Tue Aug 10 17:00:48 2004 @@ -18,14 +18,14 @@ /******************************************************************************* * UIModelConstraintImpl.java - * + * * Created: Jun 4, 2004 - * + * * @author Benjamin Poussin Copyright Code Lutin - * - * @version $Revision: 1.4 $ - * - * Mise a jour: $Date: 2004/06/30 13:27:25 $ par : $Author: pineau $ + * + * @version $Revision: 1.5 $ + * + * Mise a jour: $Date: 2004/08/10 17:00:48 $ par : $Author: mazelier $ */ package org.codelutin.generator.models.ui.xml; @@ -36,53 +36,53 @@ public class UIModelConstraintImpl implements UIModelConstraint { // UIModelConstraintImpl - protected UIModel model = null; + protected UIModel model = null; - protected UIModelObject parent = null; + protected UIModelObject parent = null; - // valeur de la constraint de type UIModelObject ou String (cas du - // borderLayout) - protected Object value = null; - - public UIModelConstraintImpl(UIModel model, UIModelObject parent) { - this.model = model; - this.parent = parent; - } - - public UIModelObjectImpl parsetObject(UIModelObjectImpl value) { - if (value == null) { - return new UIModelObjectImpl(model, parent); - } - - this.value = value; - return value; - } - - public void parsetString(String value) { - this.value = value; - } - - /** - * Returns the value of this constraint. the value returned can be an - * instance of UIModelObject or String or null - * - * @return the value of this constraint. - */ - public Object getValue() { - return value; - } - - /** - * Returns the value of this constraint if the type is String else return - * null - * - * @return the value of this constraint. - */ - public String getStringValue() { - if (value instanceof String) - return (String) value; - return null; - } + // valeur de la constraint de type UIModelObject ou String (cas du + // borderLayout) + protected Object value = null; + + public UIModelConstraintImpl(UIModel model, UIModelObject parent) { + this.model = model; + this.parent = parent; + } + + public UIModelObjectImpl parsetObject(UIModelObjectImpl value) { + if (value == null) { + return new UIModelObjectImpl(model, parent); + } + + this.value = value; + return value; + } + + public void parsetString(String value) { + this.value = value; + } + + /** + * Returns the value of this constraint. the value returned can be an + * instance of UIModelObject or String or null + * + * @return the value of this constraint. + */ + public Object getValue() { + return value; + } + + /** + * Returns the value of this constraint if the type is String else return + * null + * + * @return the value of this constraint. + */ + public String getStringValue() { + if (value instanceof String) + return (String) value; + return null; + } } // UIModelConstraintImpl Index: lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelEventImpl.java diff -u lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelEventImpl.java:1.4 lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelEventImpl.java:1.5 --- lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelEventImpl.java:1.4 Wed Jun 30 13:27:25 2004 +++ lutingenerator/src/java/org/codelutin/generator/models/ui/xml/UIModelEventImpl.java Tue Aug 10 17:00:48 2004 @@ -23,10 +23,10 @@ * * @author Benjamin Poussin * Copyright Code Lutin - * @version $Revision: 1.4 $ + * @version $Revision: 1.5 $ * - * Mise a jour: $Date: 2004/06/30 13:27:25 $ - * par : $Author: pineau $ + * Mise a jour: $Date: 2004/08/10 17:00:48 $ + * par : $Author: mazelier $ */ package org.codelutin.generator.models.ui.xml; @@ -107,5 +107,6 @@ public String getArgument() { return argument; } + } // UIModelEventImpl