[isidorus-cvs] r562 - in branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets: base text views
lgiessmann at common-lisp.net
lgiessmann at common-lisp.net
Tue Jul 5 19:47:33 UTC 2011
Author: lgiessmann
Date: Tue Jul 5 12:47:32 2011
New Revision: 562
Log:
gdl-frontend: Widgets: changed the behavior of setter methods for GDL attributes of GdlVisibleObject and GdlTextObject
Modified:
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPsis.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTextObject.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlCreatorAssociationView.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlDefaultCreatorTopicView.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlEditorAssociationView.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialCreatorTopicView.java
branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialEditorTopicView.java
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPsis.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPsis.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlPsis.java Tue Jul 5 12:47:32 2011 (r562)
@@ -190,6 +190,8 @@
public final static String gdlUnitBorderBottomRightRadius = gdl + "unit-border-bottom-right-radius";
public final static String gdlUnitBoderBottomLeftRadius = gdl + "unit-border-bottom-left-radius";
public final static String gdlUnitBorderTopLeftRadius = gdl + "unit-border-top-left-radius";
+ public final static String gdlContentFloat = gdl + "content-float";
+ public final static String gdlContentClear = gdl + "content-clear";
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/base/GdlVisibleObject.java Tue Jul 5 12:47:32 2011 (r562)
@@ -208,18 +208,57 @@
return Float.NONE;
}
}
+
+
+ // returns a Float instance of a gdl:conetnt-float occurrence or the default value for
+ // this property if no gdl:content-float occurrence is available
+ public Float getContentFloat() throws InvalidGdlSchemaException {
+ Occurrence floatOcc = getNoneOrOneUnscopedOccurrence(GdlPsis.OccurrenceType.gdlContentFloat);
+
+ if(floatOcc != null){
+ String value = floatOcc.getValue().toLowerCase();
+ if(value.equals("none")){
+ return Float.NONE;
+ } else if (value.equals("left")){
+ return Float.LEFT;
+ } else if (value.equals("right")){
+ return Float.RIGHT;
+ } else {
+ throw new InvalidGdlSchemaException("The occurrence " + GdlPsis.OccurrenceType.gdlContentFloat + " must be set to one of \"none\", \"left\" or \"right\", but is \"" + floatOcc.getValue() + "\"");
+ }
+ } else {
+ return Float.NONE;
+ }
+ }
// returns a ClearValue instance of a gdl:clear occurrence or the default value for
// this property if no gdl:clear occurrence is available
public ClearValue getClear() throws InvalidGdlSchemaException {
- Occurrence clearOcc = getNoneOrOneUnscopedOccurrence(GdlPsis.OccurrenceType.gdlFloat);
+ Occurrence clearOcc = getNoneOrOneUnscopedOccurrence(GdlPsis.OccurrenceType.gdlClear);
if(clearOcc != null){
try{
return ClearValue.valueOf(clearOcc.getValue().toUpperCase());
}catch(IllegalArgumentException e){
- throw new InvalidGdlSchemaException("The occurrence " + GdlPsis.OccurrenceType.gdlFloat + " must be set to one of \"none\", \"left\", \"right\" or \"both\", but is \"" + clearOcc.getValue() + "\"");
+ throw new InvalidGdlSchemaException("The occurrence " + GdlPsis.OccurrenceType.gdlClear + " must be set to one of \"none\", \"left\", \"right\" or \"both\", but is \"" + clearOcc.getValue() + "\"");
+ }
+ } else {
+ return ClearValue.NONE;
+ }
+ }
+
+
+ // returns a ClearValue instance of a gdl:content-clear occurrence or the default value for
+ // this property if no gdl:content-clear occurrence is available
+ public ClearValue getContentClear() throws InvalidGdlSchemaException {
+ Occurrence clearOcc = getNoneOrOneUnscopedOccurrence(GdlPsis.OccurrenceType.gdlContentClear);
+
+ if(clearOcc != null){
+ try{
+ return ClearValue.valueOf(clearOcc.getValue().toUpperCase());
+ }catch(IllegalArgumentException e){
+ throw new InvalidGdlSchemaException("The occurrence " + GdlPsis.OccurrenceType.gdlContentClear + " must be set to one of \"none\", \"left\", \"right\" or \"both\", but is \"" + clearOcc.getValue() + "\"");
}
} else {
return ClearValue.NONE;
@@ -1092,7 +1131,7 @@
}
}
-
+
// sets the id property of this element by using the GWT DOM class
public void setId(String id){
if(id != null){
@@ -1123,6 +1162,10 @@
DOM.setStyleAttribute(this.getElement(), "float", value.getCssName());
}
}
+
+
+ // sets the float style property of all sub elements by using the GWT DOM class
+ public abstract void setContentFloat(Float value);
// sets the clear style property of this element by using the GWT DOM class
@@ -1131,6 +1174,10 @@
DOM.setStyleAttribute(this.getElement(), "clear", value.getCssValue());
}
}
+
+
+ // sets the clear style property of all sub elements by using the GWT DOM class
+ public abstract void setContentClear(ClearValue value);
// sets the vertical-align style property of this element by using the GWT DOM class
@@ -1140,237 +1187,159 @@
// sets the margin style property of this element by using the GWT DOM class
- public void setMargin(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "margin", value.getCssValue());
- }
+ public abstract void setMargin(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the margin-top style property of this element by using the GWT DOM class
- public void setMarginTop(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "marginTop", value.getCssValue());
- }
+ public abstract void setMarginTop(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the margin-right style property of this element by using the GWT DOM class
- public void setMarginRight(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "marginRight", value.getCssValue());
- }
+ public abstract void setMarginRight(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the margin-bottom style property of this element by using the GWT DOM class
- public void setMarginBottom(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "marginBottom", value.getCssValue());
- }
+ public abstract void setMarginBottom(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the margin-left style property of this element by using the GWT DOM class
- public void setMarginLeft(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "marginLeft", value.getCssValue());
- }
+ public abstract void setMarginLeft(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-color style property of this element by using the GWT DOM class
- public void setBorderColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderColor", value.getCssValue());
- }
+ public abstract void setBorderColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-top-color style property of this element by using the GWT DOM class
- public void setBorderTopColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderTopColor", value.getCssValue());
- }
+ public abstract void setBorderTopColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-right-color style property of this element by using the GWT DOM class
- public void setBorderRightColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderRightColor", value.getCssValue());
- }
+ public abstract void setBorderRightColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-bottom-color style property of this element by using the GWT DOM class
- public void setBorderBottomColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderBottomColor", value.getCssValue());
- }
+ public abstract void setBorderBottomColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-left-color style property of this element by using the GWT DOM class
- public void setBorderLeftColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderLeftColor", value.getCssValue());
- }
+ public abstract void setBorderLeftColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-style style property of this element by using the GWT DOM class
- public void setBorderStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderStyle", value.getCssValue());
- }
+ public abstract void setBorderStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-top-style style property of this element by using the GWT DOM class
- public void setBorderTopStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderTopStyle", value.getCssValue());
- }
+ public abstract void setBorderTopStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-right-style style property of this element by using the GWT DOM class
- public void setBorderRightStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderRightStyle", value.getCssValue());
- }
+ public abstract void setBorderRightStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-bottom-style style property of this element by using the GWT DOM class
- public void setBorderBottomStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderBottomStyle", value.getCssValue());
- }
+ public abstract void setBorderBottomStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-left-style style property of this element by using the GWT DOM class
- public void setBorderLeftStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderLeftStyle", value.getCssValue());
- }
+ public abstract void setBorderLeftStyle(BorderStyleValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-width style property of this element by using the GWT DOM class
- public void setBorderWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderWidth", value.getCssValue());
- }
+ public abstract void setBorderWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-width style property of this element by using the GWT DOM class
- public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderTopWidth", value.getCssValue());
- }
-
+ public abstract void setBorderTopWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
+
// sets the border-width style property of this element by using the GWT DOM class
- public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderRightWidth", value.getCssValue());
- }
-
+ public abstract void setBorderRightWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
+
// sets the border-width style property of this element by using the GWT DOM class
- public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderBottomWidth", value.getCssValue());
- }
+ public abstract void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-width style property of this element by using the GWT DOM class
- public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderLeftWidth", value.getCssValue());
- }
+ public abstract void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-radius style property of this element by using the GWT DOM class
- public void setBorderRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderRadius", value.getCssValue());
- }
+ public abstract void setBorderRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-top-right-radius style property of this element by using the GWT DOM class
- public void setBorderTopRightRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderTopRightRadius", value.getCssValue());
- }
+ public abstract void setBorderTopRightRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-bottom-right-radius style property of this element by using the GWT DOM class
- public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderBottomRightRadius", value.getCssValue());
- }
+ public abstract void setBorderBottomRightRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-bottom-left-radius style property of this element by using the GWT DOM class
- public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderBottomLeftRadius", value.getCssValue());
- }
+ public abstract void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the border-top-left-radius style property of this element by using the GWT DOM class
- public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "borderTopLeftRadius", value.getCssValue());
- }
+ public abstract void setBorderTopLeftRadius(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the padding style property of this element by using the GWT DOM class
- public void setPadding(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "padding", value.getCssValue());
- }
+ public abstract void setPadding(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the padding-top style property of this element by using the GWT DOM class
- public void setPaddingTop(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "paddingTop", value.getCssValue());
- }
+ public abstract void setPaddingTop(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the padding-right style property of this element by using the GWT DOM class
- public void setPaddingRight(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "paddingRight", value.getCssValue());
- }
+ public abstract void setPaddingRight(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the padding-bottom style property of this element by using the GWT DOM class
- public void setPaddingBottom(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "paddingBottom", value.getCssValue());
- }
+ public abstract void setPaddingBottom(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the padding-left style property of this element by using the GWT DOM class
- public void setPaddingLeft(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "paddingLeft", value.getCssValue());
- }
+ public abstract void setPaddingLeft(NumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the width style property of this element by using the GWT DOM class
- public void setWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "width", value.getCssValue());
- }
+ public abstract void setWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the min-width style property of this element by using the GWT DOM class
- public void setMinWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "minWidth", value.getCssValue());
- }
+ public abstract void setMinWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the max-width style property of this element by using the GWT DOM class
- public void setMaxWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "maxHeight", value.getCssValue());
- }
+ public abstract void setMaxWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the height style property of this element by using the GWT DOM class
- public void setHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "height", value.getCssValue());
- }
+ public abstract void setHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the min-height style property of this element by using the GWT DOM class
- public void setMinHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "minHeight", value.getCssValue());
- }
+ public abstract void setMinHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the max-height style property of this element by using the GWT DOM class
- public void setMaxHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "maxHeight", value.getCssValue());
- }
+ public abstract void setMaxHeight(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the cursor style property of this element by using the GWT DOM class
- public void setCursor(CursorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "cursor", value.getCssValue());
- }
+ public abstract void setCursor(CursorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the background-color style property of this element by using the GWT DOM class
- public void setBackgroundColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "backgroundColor", value.getCssValue());
- }
+ public abstract void setBackgroundColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the overflow style property of this element by using the GWT DOM class
- public void setOverflow(Overflow value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(styleClass, "overflow", value.getCssName());
- }
+ public abstract void setOverflow(Overflow value, String styleClass)throws InvalidGdlSchemaException, ExecutionException;
// sets the passed css style porperty to the passed css value.
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlText.java Tue Jul 5 12:47:32 2011 (r562)
@@ -2,7 +2,10 @@
import java.util.ArrayList;
+
+import com.google.gwt.dom.client.Style.Float;
import com.google.gwt.dom.client.Style.FontStyle;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.BlurHandler;
import com.google.gwt.event.dom.client.FocusHandler;
import com.google.gwt.event.dom.client.KeyPressEvent;
@@ -30,6 +33,7 @@
import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
import us.isidor.gdl.anaToMia.Widgets.values.AutoNumValue;
import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
import us.isidor.gdl.anaToMia.Widgets.values.DirectionValue;
@@ -78,9 +82,7 @@
TextArea elem = new TextArea();
this.textElements.add(elem);
DOM.setElementAttribute(elem.getElement(), "id", this.getId() + "__GDL_" + this.textElements.size());
- super.mainPanel.add(elem);
- this.setContentGdlStyle(elem);
-
+ super.mainPanel.add(elem);
// TODO: reset the text area size on each text element
return elem;
}
@@ -285,23 +287,6 @@
}
- public void setWidth(TextArea elem, AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) this.setCssProperty(elem, styleClass, "width", value.getCssValue());
- }
-
-
- @Override
- public void setWidth(AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- // TODO: implement
-
- }
-
-
- public void setHeight(TextArea elem, AutoNumUnitValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
- // TODO: implement
- }
-
-
// sets the rows property if gdl:width is not set
public void setRows(int value) throws InvalidGdlSchemaException, ExecutionException {
if(value < 0) throw new InvalidGdlSchemaException("The occurrence " + GdlPsis.OccurrenceType.gdlRows + " must be set to a positive integer, but is \"" + value + "\"");
@@ -328,6 +313,7 @@
}
+ /*
// sets the background-color style property of this element's text items by using the GWT DOM class
@Override
public void setBackgroundColor(ColorValue value, String styleClass)throws InvalidGdlSchemaException, ExecutionException{
@@ -738,10 +724,16 @@
public void setWordSpacing(TextArea elem, NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException {
if(value != null) this.setCssProperty(elem, styleClass, "wordSpacing", value.getCssValue());
}
+ */
-
- // sets the GDL style of the passed content element, i.e. the TextArea element
- protected void setContentGdlStyle(TextArea elem) throws InvalidGdlSchemaException, ExecutionException{
+ // calls the super class's setGdlStyle and additionally calls local statements
+ // to fulfill the style settings
+ @Override
+ protected void setGdlStyle() throws InvalidGdlSchemaException, ExecutionException{
+ // TODO: implement
+
+ /*
+
// create all handlers for elem
ActiveStyleHandler asHandler = new ActiveStyleHandler();
this.activeStyleHandler.add(new Pair<TextArea, GdlVisibleObject.ActiveStyleHandler>(elem, asHandler));
@@ -758,57 +750,7 @@
this.setRows(this.getRows());
this.setCols(this.getCols());
- String[] styleClasses = new String[]{null, GdlPsis.Scope.gdlActive, GdlPsis.Scope.gdlFocus, GdlPsis.Scope.gdlHover};
- for (String styleClass : styleClasses) {
- // visible object styles
- this.setBackgroundColor(elem, this.getBackgroundColor(styleClass), styleClass);
- this.setCursor(elem, this.getCursor(styleClass), styleClass);
- this.setColor(elem, this.getColor(styleClass), styleClass);
- this.setBorderColor(elem, this.getBorderColor(styleClass), styleClass);
- this.setBorderTopColor(elem, this.getBorderTopColor(styleClass), styleClass);
- this.setBorderRightColor(elem, this.getBorderRightColor(styleClass), styleClass);
- this.setBorderBottomColor(elem, this.getBorderBottomColor(styleClass), styleClass);
- this.setBorderLeftColor(elem, this.getBorderLeftColor(styleClass), styleClass);
- this.setBorderStyle(elem, this.getBorderStyle(styleClass), styleClass);
- this.setBorderTopStyle(elem, this.getBorderTopStyle(styleClass), styleClass);
- this.setBorderRightStyle(elem, this.getBorderRightStyle(styleClass), styleClass);
- this.setBorderBottomStyle(elem, this.getBorderBottomStyle(styleClass), styleClass);
- this.setBorderLeftStyle(elem, this.getBorderLeftStyle(styleClass), styleClass);
- this.setBorderWidth(elem, this.getBorderWidth(styleClass), styleClass);
- this.setBorderTopWidth(elem, this.getBorderTopWidth(styleClass), styleClass);
- this.setBorderRightWidth(elem, this.getBorderRightWidth(styleClass), styleClass);
- this.setBorderBottomWidth(elem, this.getBorderBottomWidth(styleClass), styleClass);
- this.setBorderLeftWidth(elem, this.getBorderLeftWidth(styleClass), styleClass);
- this.setBorderRadius(elem, this.getBorderRadius(styleClass), styleClass);
- this.setBorderTopRightRadius(elem, this.getBorderTopRightRadius(styleClass), styleClass);
- this.setBorderBottomRightRadius(elem, this.getBorderBottomRightRadius(styleClass), styleClass);
- this.setBorderBottomLeftRadius(elem, this.getBorderBottomLeftRadius(styleClass), styleClass);
- this.setBorderTopLeftRadius(elem, this.getBorderTopLeftRadius(styleClass), styleClass);
- this.setMargin(elem, this.getMargin(styleClass), styleClass);
- this.setMarginTop(elem, this.getMarginTop(styleClass), styleClass);
- this.setMarginRight(elem, this.getMarginRight(styleClass), styleClass);
- this.setMarginBottom(elem, this.getMarginBottom(styleClass), styleClass);
- this.setMarginLeft(elem, this.getMarginLeft(styleClass), styleClass);
- this.setPadding(elem, this.getPadding(styleClass), styleClass);
- this.setPaddingTop(elem, this.getPaddingTop(styleClass), styleClass);
- this.setPaddingRight(elem, this.getPaddingRight(styleClass), styleClass);
- this.setPaddingBottom(elem, this.getPaddingBottom(styleClass), styleClass);
- this.setPaddingLeft(elem, this.getPaddingLeft(styleClass), styleClass);
- this.setWidth(elem, this.getWidth(styleClass), styleClass);
- this.setHeight(elem, this.getHeight(styleClass), styleClass);
-
- // text object styles
- this.setDirection(elem, this.getDirection(styleClass), styleClass);
- this.setTextAlign(elem, this.getTextAlign(styleClass), styleClass);
- this.setLineHeight(elem, this.getLineHeight(styleClass), styleClass);
- this.setTextDecoration(elem, this.getTextDecoration(styleClass), styleClass);
- this.setFontFamily(elem, this.getFontFamily(styleClass), styleClass);
- this.setFontStyle(elem, this.getFontStyle(styleClass), styleClass);
- this.setFontSize(elem, this.getFontSize(styleClass), styleClass);
- this.setFontWeight(elem, this.getFontWeight(styleClass), styleClass);
- this.setLetterSpacing(elem, this.getLetterSpacing(styleClass), styleClass);
- this.setWordSpacing(elem, this.getWordSpacing(styleClass), styleClass);
- }
+
// register the corresponding handlers for each text element
elem.addMouseDownHandler(asHandler);
@@ -817,30 +759,7 @@
elem.addBlurHandler(fsHandler);
elem.addMouseOutHandler(hsHandler);
elem.addMouseOverHandler(hsHandler);
- }
-
-
- // calls the super class's setGdlStyle and additionally calls local statements
- // to fulfill the style settings
- @Override
- protected void setGdlStyle() throws InvalidGdlSchemaException, ExecutionException{
- // the outer/container element
- super.setDisplay(super.getDisplay());
- super.setZindex(super.getZindex());
- super.setFloat(super.getFloat());
- super.setClear(super.getClear());
-
- String[] styleClasses = new String[]{null, GdlPsis.Scope.gdlActive, GdlPsis.Scope.gdlFocus, GdlPsis.Scope.gdlHover};
- for (String styleClass : styleClasses) {
- super.setVerticalAlign(super.getVerticalAlign(styleClass), styleClass);
- super.setOverflow(super.getOverflow(styleClass), styleClass);
- super.setWidth(super.getWidth(styleClass), styleClass);
- super.setMinWidth(super.getMinWidth(styleClass), styleClass);
- super.setMaxWidth(super.getMaxWidth(styleClass), styleClass);
- super.setHeight(super.getHeight(styleClass), styleClass);
- super.setMinHeight(super.getMinHeight(styleClass), styleClass);
- super.setMaxHeight(super.getMaxHeight(styleClass), styleClass);
- }
+ */
}
@@ -955,4 +874,418 @@
return this.realValue;
}
}
+
+
+ @Override
+ public void setDirection(DirectionValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setTextAlign(TextAlignValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setLineHeight(NormalNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setTextDecoration(TextDecorationValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setFontFamily(String value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setFontStyle(FontStyle value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setFontSize(PositiveNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setFontWeight(FontWeightValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setLetterSpacing(NormalNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWordSpacing(NormalNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTextObject.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTextObject.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/text/GdlTextObject.java Tue Jul 5 12:47:32 2011 (r562)
@@ -279,69 +279,47 @@
// sets the direction style property of this element by using the GWT DOM class
- public void setDirection(DirectionValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "direction", value.getCssValue());
- }
+ public abstract void setDirection(DirectionValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the text-align style property of this element by using the GWT DOM class
- public void setTextAlign(TextAlignValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "textAlign", value.getCssValue());
- }
+ public abstract void setTextAlign(TextAlignValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the line-height style property of this element by using the GWT DOM class
- public void setLineHeight(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "lineHeight", value.getCssValue());
- }
+ public abstract void setLineHeight(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the text-decoration style property of this element by using the GWT DOM class
- public void setTextDecoration(TextDecorationValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "textDecoration", value.getCssValue());
- }
+ public abstract void setTextDecoration(TextDecorationValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the color style property of this element by using the GWT DOM class
- public void setColor(ColorValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "color", value.getCssValue());
- }
+ public abstract void setColor(ColorValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the font-family style property of this element by using the GWT DOM class
- public void setFontFamily(String value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "fontFamily", value);
- }
+ public abstract void setFontFamily(String value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the font-style style property of this element by using the GWT DOM class
- public void setFontStyle(FontStyle value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "fontStyle", value.getCssName());
- }
+ public abstract void setFontStyle(FontStyle value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the font-size style property of this element by using the GWT DOM class
- public void setFontSize(PositiveNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "fontSize", value.getCssValue());
- }
+ public abstract void setFontSize(PositiveNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the font-weight style property of this element by using the GWT DOM class
- public void setFontWeight(FontWeightValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "fontWeight", value.getCssValue());
- }
+ public abstract void setFontWeight(FontWeightValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the letter-spacing style property of this element by using the GWT DOM class
- public void setLetterSpacing(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "letterSpacing", value.getCssValue());
- }
+ public abstract void setLetterSpacing(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// sets the word-spacing style property of this element by using the GWT DOM class
- public void setWordSpacing(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException{
- if(value != null) super.setCssProperty(styleClass, "wordSpacing", value.getCssValue());
- }
+ public abstract void setWordSpacing(NormalNumUnitValue value, String styleClass) throws InvalidGdlSchemaException, ExecutionException;
// calls the super class's setGdlStyle and additionally calls local statements
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlCreatorAssociationView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlCreatorAssociationView.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlCreatorAssociationView.java Tue Jul 5 12:47:32 2011 (r562)
@@ -1,5 +1,7 @@
package us.isidor.gdl.anaToMia.Widgets.views;
+import com.google.gwt.dom.client.Style.Float;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.ClickHandler;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association;
@@ -9,6 +11,13 @@
import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
+import us.isidor.gdl.anaToMia.Widgets.values.AbsoluteNumValue;
+import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
+import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.NumUnitValue;
public class GdlCreatorAssociationView extends GdlAssociationView {
@@ -61,4 +70,289 @@
// TODO Auto-generated method stub
}
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlDefaultCreatorTopicView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlDefaultCreatorTopicView.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlDefaultCreatorTopicView.java Tue Jul 5 12:47:32 2011 (r562)
@@ -1,5 +1,7 @@
package us.isidor.gdl.anaToMia.Widgets.views;
+import com.google.gwt.dom.client.Style.Float;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.ClickHandler;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct;
@@ -8,6 +10,13 @@
import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
+import us.isidor.gdl.anaToMia.Widgets.values.AbsoluteNumValue;
+import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
+import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.NumUnitValue;
public class GdlDefaultCreatorTopicView extends GdlDefaultTopicView{
@@ -62,5 +71,331 @@
// TODO Auto-generated method stub
}
+
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlEditorAssociationView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlEditorAssociationView.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlEditorAssociationView.java Tue Jul 5 12:47:32 2011 (r562)
@@ -1,5 +1,7 @@
package us.isidor.gdl.anaToMia.Widgets.views;
+import com.google.gwt.dom.client.Style.Float;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.ClickHandler;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Association;
@@ -9,6 +11,13 @@
import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
+import us.isidor.gdl.anaToMia.Widgets.values.AbsoluteNumValue;
+import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
+import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.NumUnitValue;
public class GdlEditorAssociationView extends GdlAssociationView {
@@ -63,4 +72,330 @@
// TODO Auto-generated method stub
}
+
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialCreatorTopicView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialCreatorTopicView.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialCreatorTopicView.java Tue Jul 5 12:47:32 2011 (r562)
@@ -1,5 +1,7 @@
package us.isidor.gdl.anaToMia.Widgets.views;
+import com.google.gwt.dom.client.Style.Float;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.ClickHandler;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct;
@@ -8,6 +10,13 @@
import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
+import us.isidor.gdl.anaToMia.Widgets.values.AbsoluteNumValue;
+import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
+import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.NumUnitValue;
public class GdlSpecialCreatorTopicView extends GdlSpecialTopicView{
// TODO: implement
@@ -61,5 +70,331 @@
// TODO Auto-generated method stub
}
+
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
Modified: branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialEditorTopicView.java
==============================================================================
--- branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialEditorTopicView.java Tue Jul 5 12:20:05 2011 (r561)
+++ branches/gdl-frontend/src/anaToMia/GDL_Widgets/src/us/isidor/gdl/anaToMia/Widgets/views/GdlSpecialEditorTopicView.java Tue Jul 5 12:47:32 2011 (r562)
@@ -1,5 +1,7 @@
package us.isidor.gdl.anaToMia.Widgets.views;
+import com.google.gwt.dom.client.Style.Float;
+import com.google.gwt.dom.client.Style.Overflow;
import com.google.gwt.event.dom.client.ClickHandler;
import us.isidor.gdl.anaToMia.TopicMaps.TopicMapsModel.Construct;
@@ -8,6 +10,13 @@
import us.isidor.gdl.anaToMia.Widgets.base.GdlVisibleObject;
import us.isidor.gdl.anaToMia.Widgets.environment.ExecutionException;
import us.isidor.gdl.anaToMia.Widgets.environment.InvalidGdlSchemaException;
+import us.isidor.gdl.anaToMia.Widgets.values.AbsoluteNumValue;
+import us.isidor.gdl.anaToMia.Widgets.values.AutoNumUnitValue;
+import us.isidor.gdl.anaToMia.Widgets.values.BorderStyleValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ClearValue;
+import us.isidor.gdl.anaToMia.Widgets.values.ColorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.CursorValue;
+import us.isidor.gdl.anaToMia.Widgets.values.NumUnitValue;
public class GdlSpecialEditorTopicView extends GdlSpecialTopicView{
@@ -63,4 +72,330 @@
// TODO Auto-generated method stub
}
+
+
+ @Override
+ public void setContentFloat(Float value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setContentClear(ClearValue value) {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMargin(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMarginLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftStyle(BorderStyleValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRightWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderLeftWidth(AbsoluteNumValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomRightRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderBottomLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBorderTopLeftRadius(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPadding(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingTop(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingRight(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingBottom(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setPaddingLeft(NumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxWidth(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMinHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setMaxHeight(AutoNumUnitValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setCursor(CursorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setBackgroundColor(ColorValue value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
+
+
+ @Override
+ public void setOverflow(Overflow value, String styleClass)
+ throws InvalidGdlSchemaException, ExecutionException {
+ // TODO Auto-generated method stub
+
+ }
}
More information about the Isidorus-cvs
mailing list