diff --git a/org/w3c/css/parser/CssFouffa.java b/org/w3c/css/parser/CssFouffa.java
index 4890fe54a..0e62dab95 100644
--- a/org/w3c/css/parser/CssFouffa.java
+++ b/org/w3c/css/parser/CssFouffa.java
@@ -592,6 +592,11 @@ public CssProperty handleDeclaration(String property, CssExpression expression,
if (property.startsWith("--") && (ac.getCssVersion().compareTo(CssVersion.CSS3) >= 0)) {
prop = new CssCustomProperty(ac, property, expression);
+ // force early registration, it will be overwritten later but
+ // at least it will resolve within the block.
+ if (ac.getStyleSheet() != null) {
+ ac.getStyleSheet().addCustomProperty(property, (CssCustomProperty) prop, true);
+ }
// css variable
} else {
final CssValue lastValue = expression.getLastValue();
diff --git a/org/w3c/css/parser/CssPropertyFactory.java b/org/w3c/css/parser/CssPropertyFactory.java
index 12dc3169b..39341401e 100644
--- a/org/w3c/css/parser/CssPropertyFactory.java
+++ b/org/w3c/css/parser/CssPropertyFactory.java
@@ -263,10 +263,6 @@ public synchronized CssProperty createProperty(ApplContext ac, AtRule atRule, St
throw new WarningParamException("vendor-extension", expression.toStringFromStart());
}
- if (expression.hasCssVariable()) {
- throw new WarningParamException("css-variable", expression.toStringFromStart());
- }
-
if (ac.getTreatCssHacksAsWarnings() && expression.hasCssHack()) {
throw new WarningParamException("css-hack", expression.toStringFromStart());
}
@@ -274,6 +270,7 @@ public synchronized CssProperty createProperty(ApplContext ac, AtRule atRule, St
try {
boolean isCssWide = false;
CssIdent cssIdent = null;
+ CssProperty p;
if ((expression.getCount() == 1) && (expression.getValue().getRawType() == CssTypes.CSS_IDENT)) {
cssIdent = expression.getValue().getIdent();
isCssWide = CssIdent.isCssWide(cssIdent);
@@ -285,7 +282,7 @@ public synchronized CssProperty createProperty(ApplContext ac, AtRule atRule, St
Object[] parameters = {};
expression.next(); // consume token
// invoke the constructor
- CssProperty p = (CssProperty) constructor.newInstance(parameters);
+ p = (CssProperty) constructor.newInstance(parameters);
p.value = cssIdent;
return p;
} else if (isCatchall) {
@@ -294,20 +291,38 @@ public synchronized CssProperty createProperty(ApplContext ac, AtRule atRule, St
Constructor constructor = Class.forName(classname).getConstructor(parametersType);
Object[] parameters = {ac, property, expression, Boolean.TRUE};
// invoke the constructor
- return (CssProperty) constructor.newInstance(parameters);
+ p = (CssProperty) constructor.newInstance(parameters);
+ if (expression.hasCssVariable() && p.toString() == null) {
+ p.valueString = expression.toStringFromStart();
+ }
+ return p;
} else {
// create an instance of your property class
Class[] parametersType = {ac.getClass(), expression.getClass(), boolean.class};
Constructor constructor = Class.forName(classname).getConstructor(parametersType);
Object[] parameters = {ac, expression, Boolean.TRUE};
// invoke the constructor
- return (CssProperty) constructor.newInstance(parameters);
+ p = (CssProperty) constructor.newInstance(parameters);
+ if (expression.hasCssVariable() && p.toString() == null) {
+ p.valueString = expression.toStringFromStart();
+ }
+ return p;
}
} catch (InvocationTargetException e) {
// catch InvalidParamException
Exception ex = (Exception) e.getTargetException();
// uncomment for debug - ex.printStackTrace();
+ if (expression.hasCssVariable()) {
+ try {
+ CssProperty p = (CssProperty) Class.forName(classname).getConstructor().newInstance();
+ p.valueString = expression.toStringFromStart();
+ ac.getFrame().addWarning("css-variable", new String[]{p.valueString});
+ return p;
+ } catch (Exception fex) {
+ throw new WarningParamException("css-variable", expression.toStringFromStart());
+ }
+ }
throw ex;
}
}
diff --git a/org/w3c/css/properties/css/CssAccentColor.java b/org/w3c/css/properties/css/CssAccentColor.java
index c9f0d4811..300552c3a 100644
--- a/org/w3c/css/properties/css/CssAccentColor.java
+++ b/org/w3c/css/properties/css/CssAccentColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAccentColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAccentColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAlignContent.java b/org/w3c/css/properties/css/CssAlignContent.java
index 184fc5d6e..159e253da 100644
--- a/org/w3c/css/properties/css/CssAlignContent.java
+++ b/org/w3c/css/properties/css/CssAlignContent.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAlignContent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAlignContent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAlignItems.java b/org/w3c/css/properties/css/CssAlignItems.java
index eabd82adc..361300eaf 100644
--- a/org/w3c/css/properties/css/CssAlignItems.java
+++ b/org/w3c/css/properties/css/CssAlignItems.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAlignItems = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAlignItems) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAlignSelf.java b/org/w3c/css/properties/css/CssAlignSelf.java
index 5df35e100..926b2eb54 100644
--- a/org/w3c/css/properties/css/CssAlignSelf.java
+++ b/org/w3c/css/properties/css/CssAlignSelf.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAlignSelf = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAlignSelf) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAlignmentBaseline.java b/org/w3c/css/properties/css/CssAlignmentBaseline.java
index 8d8af34a7..a73cd0d5a 100644
--- a/org/w3c/css/properties/css/CssAlignmentBaseline.java
+++ b/org/w3c/css/properties/css/CssAlignmentBaseline.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAlignmentBaseline = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAlignmentBaseline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAll.java b/org/w3c/css/properties/css/CssAll.java
index 6eccdba05..f4fe0dbd3 100644
--- a/org/w3c/css/properties/css/CssAll.java
+++ b/org/w3c/css/properties/css/CssAll.java
@@ -46,7 +46,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -62,13 +61,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -79,7 +71,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
// of the current style...
}
-
/**
* Compares two properties for equality.
*
@@ -90,7 +81,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimation.java b/org/w3c/css/properties/css/CssAnimation.java
index b74dfc2a7..26beb8ded 100644
--- a/org/w3c/css/properties/css/CssAnimation.java
+++ b/org/w3c/css/properties/css/CssAnimation.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationDelay.java b/org/w3c/css/properties/css/CssAnimationDelay.java
index 67d6a5f9a..4e6096bfb 100644
--- a/org/w3c/css/properties/css/CssAnimationDelay.java
+++ b/org/w3c/css/properties/css/CssAnimationDelay.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationDelay = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationDelay) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationDirection.java b/org/w3c/css/properties/css/CssAnimationDirection.java
index 16b42017a..9deba8d81 100644
--- a/org/w3c/css/properties/css/CssAnimationDirection.java
+++ b/org/w3c/css/properties/css/CssAnimationDirection.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationDirection = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationDirection) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationDuration.java b/org/w3c/css/properties/css/CssAnimationDuration.java
index 6bca95ed0..e3d9d5c31 100644
--- a/org/w3c/css/properties/css/CssAnimationDuration.java
+++ b/org/w3c/css/properties/css/CssAnimationDuration.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationDuration = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationDuration) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationFillMode.java b/org/w3c/css/properties/css/CssAnimationFillMode.java
index d474acbf4..6fa7aec2f 100644
--- a/org/w3c/css/properties/css/CssAnimationFillMode.java
+++ b/org/w3c/css/properties/css/CssAnimationFillMode.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationFillMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationFillMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationIterationCount.java b/org/w3c/css/properties/css/CssAnimationIterationCount.java
index 7c5c12ad7..ea4da02ad 100644
--- a/org/w3c/css/properties/css/CssAnimationIterationCount.java
+++ b/org/w3c/css/properties/css/CssAnimationIterationCount.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationIterationCount = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationIterationCount) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationName.java b/org/w3c/css/properties/css/CssAnimationName.java
index aac9b4c2d..ac9ccc85a 100644
--- a/org/w3c/css/properties/css/CssAnimationName.java
+++ b/org/w3c/css/properties/css/CssAnimationName.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationName = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationName) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationPlayState.java b/org/w3c/css/properties/css/CssAnimationPlayState.java
index 28e37b27e..300e824af 100644
--- a/org/w3c/css/properties/css/CssAnimationPlayState.java
+++ b/org/w3c/css/properties/css/CssAnimationPlayState.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationPlayState = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationPlayState) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAnimationTimingFunction.java b/org/w3c/css/properties/css/CssAnimationTimingFunction.java
index fb649a1df..df8fb93ee 100644
--- a/org/w3c/css/properties/css/CssAnimationTimingFunction.java
+++ b/org/w3c/css/properties/css/CssAnimationTimingFunction.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAnimationTimingFunction = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAnimationTimingFunction) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAppearance.java b/org/w3c/css/properties/css/CssAppearance.java
index 55a33eee7..c3e8d5cf2 100644
--- a/org/w3c/css/properties/css/CssAppearance.java
+++ b/org/w3c/css/properties/css/CssAppearance.java
@@ -45,7 +45,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -61,13 +60,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -81,7 +73,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssAppearance = this;
}
-
/**
* Compares two properties for equality.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAppearance) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAspectRatio.java b/org/w3c/css/properties/css/CssAspectRatio.java
index eeb3dd5d7..0001d9eac 100644
--- a/org/w3c/css/properties/css/CssAspectRatio.java
+++ b/org/w3c/css/properties/css/CssAspectRatio.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAspectRatio) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssAzimuth.java b/org/w3c/css/properties/css/CssAzimuth.java
index 0f0b5dbe6..977586001 100644
--- a/org/w3c/css/properties/css/CssAzimuth.java
+++ b/org/w3c/css/properties/css/CssAzimuth.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAzimuth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBackdropFilter.java b/org/w3c/css/properties/css/CssBackdropFilter.java
index cdff8e4c3..dcad7c007 100644
--- a/org/w3c/css/properties/css/CssBackdropFilter.java
+++ b/org/w3c/css/properties/css/CssBackdropFilter.java
@@ -55,13 +55,6 @@ public String getPropertyName() {
return "backdrop-filter";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. its value equals inherit
diff --git a/org/w3c/css/properties/css/CssBackfaceVisibility.java b/org/w3c/css/properties/css/CssBackfaceVisibility.java
index 0d71a85ce..39a25da1b 100644
--- a/org/w3c/css/properties/css/CssBackfaceVisibility.java
+++ b/org/w3c/css/properties/css/CssBackfaceVisibility.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBackfaceVisibility = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBackfaceVisibility) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBackground.java b/org/w3c/css/properties/css/CssBackground.java
index 6f4d14ddb..4f7796f24 100644
--- a/org/w3c/css/properties/css/CssBackground.java
+++ b/org/w3c/css/properties/css/CssBackground.java
@@ -59,7 +59,6 @@ public CssBackground(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -85,13 +84,6 @@ public final String getPropertyName() {
return "background";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBackgroundAttachment.java b/org/w3c/css/properties/css/CssBackgroundAttachment.java
index 6dc234c5a..971a680b0 100644
--- a/org/w3c/css/properties/css/CssBackgroundAttachment.java
+++ b/org/w3c/css/properties/css/CssBackgroundAttachment.java
@@ -34,7 +34,6 @@ public CssBackgroundAttachment() {
public CssBackgroundAttachment(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
-
throw new InvalidParamException("unrecognize", ac);
}
@@ -59,13 +58,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns the name of this property
*/
diff --git a/org/w3c/css/properties/css/CssBackgroundBlendMode.java b/org/w3c/css/properties/css/CssBackgroundBlendMode.java
index 4ab50f0d3..4e125abe8 100644
--- a/org/w3c/css/properties/css/CssBackgroundBlendMode.java
+++ b/org/w3c/css/properties/css/CssBackgroundBlendMode.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBackgroundBlendMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBackgroundBlendMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBackgroundClip.java b/org/w3c/css/properties/css/CssBackgroundClip.java
index 92434575c..ffa3750b4 100644
--- a/org/w3c/css/properties/css/CssBackgroundClip.java
+++ b/org/w3c/css/properties/css/CssBackgroundClip.java
@@ -42,7 +42,6 @@ public CssBackgroundClip(ApplContext ac, CssExpression expression)
this(ac, expression, false);
}
-
/**
* Add this property to the CssStyle
*
@@ -100,13 +99,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBackgroundColor.java b/org/w3c/css/properties/css/CssBackgroundColor.java
index 2e271a8de..1cef6f22b 100644
--- a/org/w3c/css/properties/css/CssBackgroundColor.java
+++ b/org/w3c/css/properties/css/CssBackgroundColor.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
public void set(CssValue col) {
value = col;
}
@@ -68,14 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBackgroundImage.java b/org/w3c/css/properties/css/CssBackgroundImage.java
index 4b3cf3c2f..1f47361ca 100644
--- a/org/w3c/css/properties/css/CssBackgroundImage.java
+++ b/org/w3c/css/properties/css/CssBackgroundImage.java
@@ -59,13 +59,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns the name of this property
*/
diff --git a/org/w3c/css/properties/css/CssBackgroundOrigin.java b/org/w3c/css/properties/css/CssBackgroundOrigin.java
index aec0e906f..f69eeb0ff 100644
--- a/org/w3c/css/properties/css/CssBackgroundOrigin.java
+++ b/org/w3c/css/properties/css/CssBackgroundOrigin.java
@@ -99,13 +99,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBackgroundPosition.java b/org/w3c/css/properties/css/CssBackgroundPosition.java
index 261d5e125..006a2d9c6 100644
--- a/org/w3c/css/properties/css/CssBackgroundPosition.java
+++ b/org/w3c/css/properties/css/CssBackgroundPosition.java
@@ -61,7 +61,6 @@ public CssBackgroundPosition(ApplContext ac, CssExpression expression)
this(ac, expression, false);
}
-
/**
* Returns the value of this property
*/
@@ -84,13 +83,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBackgroundPositionX.java b/org/w3c/css/properties/css/CssBackgroundPositionX.java
index ec10f4d98..6ac965153 100644
--- a/org/w3c/css/properties/css/CssBackgroundPositionX.java
+++ b/org/w3c/css/properties/css/CssBackgroundPositionX.java
@@ -40,7 +40,6 @@ public CssBackgroundPositionX(ApplContext ac, CssExpression expression)
this(ac, expression, false);
}
-
/**
* Returns the value of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBackgroundPositionY.java b/org/w3c/css/properties/css/CssBackgroundPositionY.java
index 2aa0cf2db..41c9fd30c 100644
--- a/org/w3c/css/properties/css/CssBackgroundPositionY.java
+++ b/org/w3c/css/properties/css/CssBackgroundPositionY.java
@@ -40,7 +40,6 @@ public CssBackgroundPositionY(ApplContext ac, CssExpression expression)
this(ac, expression, false);
}
-
/**
* Returns the value of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBackgroundRepeat.java b/org/w3c/css/properties/css/CssBackgroundRepeat.java
index 5604d0bab..d6a8215f7 100644
--- a/org/w3c/css/properties/css/CssBackgroundRepeat.java
+++ b/org/w3c/css/properties/css/CssBackgroundRepeat.java
@@ -41,7 +41,6 @@ public CssBackgroundRepeat(ApplContext ac, CssExpression expression,
throw new InvalidParamException("unrecognize", ac);
}
-
public CssBackgroundRepeat(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns the name of this property
*/
@@ -123,5 +115,3 @@ public boolean isDefault() {
}
-
-
diff --git a/org/w3c/css/properties/css/CssBackgroundSize.java b/org/w3c/css/properties/css/CssBackgroundSize.java
index 58254e5a4..e6635d764 100644
--- a/org/w3c/css/properties/css/CssBackgroundSize.java
+++ b/org/w3c/css/properties/css/CssBackgroundSize.java
@@ -36,7 +36,6 @@ public CssBackgroundSize(ApplContext ac, CssExpression expression,
throw new InvalidParamException("unrecognize", ac);
}
-
public CssBackgroundSize(ApplContext ac, CssExpression expression)
throws InvalidParamException {
this(ac, expression, false);
@@ -98,13 +97,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBaselineShift.java b/org/w3c/css/properties/css/CssBaselineShift.java
index 69776426e..ff2a2eb5b 100644
--- a/org/w3c/css/properties/css/CssBaselineShift.java
+++ b/org/w3c/css/properties/css/CssBaselineShift.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBaselineShift = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBaselineShift) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBaselineSource.java b/org/w3c/css/properties/css/CssBaselineSource.java
index 7f5988873..b20ee7fd2 100644
--- a/org/w3c/css/properties/css/CssBaselineSource.java
+++ b/org/w3c/css/properties/css/CssBaselineSource.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBaselineSource = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBaselineSource) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBlockSize.java b/org/w3c/css/properties/css/CssBlockSize.java
index d3e6b82ac..ae82f53bf 100644
--- a/org/w3c/css/properties/css/CssBlockSize.java
+++ b/org/w3c/css/properties/css/CssBlockSize.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBlockSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBlockSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorder.java b/org/w3c/css/properties/css/CssBorder.java
index d8fd11d23..25b164bf6 100644
--- a/org/w3c/css/properties/css/CssBorder.java
+++ b/org/w3c/css/properties/css/CssBorder.java
@@ -81,7 +81,6 @@ public CssBorder(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -107,14 +106,6 @@ public final String getPropertyName() {
return "border";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderBlock.java b/org/w3c/css/properties/css/CssBorderBlock.java
index 1d64d5637..858544d08 100644
--- a/org/w3c/css/properties/css/CssBorderBlock.java
+++ b/org/w3c/css/properties/css/CssBorderBlock.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockColor.java b/org/w3c/css/properties/css/CssBorderBlockColor.java
index cff0d6e7c..564a46c43 100644
--- a/org/w3c/css/properties/css/CssBorderBlockColor.java
+++ b/org/w3c/css/properties/css/CssBorderBlockColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockEnd.java b/org/w3c/css/properties/css/CssBorderBlockEnd.java
index e797581d0..2c8b7709b 100644
--- a/org/w3c/css/properties/css/CssBorderBlockEnd.java
+++ b/org/w3c/css/properties/css/CssBorderBlockEnd.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockEndColor.java b/org/w3c/css/properties/css/CssBorderBlockEndColor.java
index 9029d719b..ec2379bcd 100644
--- a/org/w3c/css/properties/css/CssBorderBlockEndColor.java
+++ b/org/w3c/css/properties/css/CssBorderBlockEndColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockEndColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockEndStyle.java b/org/w3c/css/properties/css/CssBorderBlockEndStyle.java
index 96a0602cb..88c515790 100644
--- a/org/w3c/css/properties/css/CssBorderBlockEndStyle.java
+++ b/org/w3c/css/properties/css/CssBorderBlockEndStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockEndStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockEndWidth.java b/org/w3c/css/properties/css/CssBorderBlockEndWidth.java
index dc20d00bf..895f5460f 100644
--- a/org/w3c/css/properties/css/CssBorderBlockEndWidth.java
+++ b/org/w3c/css/properties/css/CssBorderBlockEndWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockEndWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockStart.java b/org/w3c/css/properties/css/CssBorderBlockStart.java
index 53630eb09..8788035a3 100644
--- a/org/w3c/css/properties/css/CssBorderBlockStart.java
+++ b/org/w3c/css/properties/css/CssBorderBlockStart.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockStartColor.java b/org/w3c/css/properties/css/CssBorderBlockStartColor.java
index 289d02c74..3c8932b5c 100644
--- a/org/w3c/css/properties/css/CssBorderBlockStartColor.java
+++ b/org/w3c/css/properties/css/CssBorderBlockStartColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockStartColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockStartStyle.java b/org/w3c/css/properties/css/CssBorderBlockStartStyle.java
index 1cb2d7dfc..ff15e7d6b 100644
--- a/org/w3c/css/properties/css/CssBorderBlockStartStyle.java
+++ b/org/w3c/css/properties/css/CssBorderBlockStartStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockStartStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockStartWidth.java b/org/w3c/css/properties/css/CssBorderBlockStartWidth.java
index 57acb3cc4..9e9e4e0cf 100644
--- a/org/w3c/css/properties/css/CssBorderBlockStartWidth.java
+++ b/org/w3c/css/properties/css/CssBorderBlockStartWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBlockStartWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockStyle.java b/org/w3c/css/properties/css/CssBorderBlockStyle.java
index 224a6b9c8..fd935210a 100644
--- a/org/w3c/css/properties/css/CssBorderBlockStyle.java
+++ b/org/w3c/css/properties/css/CssBorderBlockStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBlockWidth.java b/org/w3c/css/properties/css/CssBorderBlockWidth.java
index bce62ba68..f3d2b35fb 100644
--- a/org/w3c/css/properties/css/CssBorderBlockWidth.java
+++ b/org/w3c/css/properties/css/CssBorderBlockWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderBottom.java b/org/w3c/css/properties/css/CssBorderBottom.java
index 611e2dc3e..54649392d 100644
--- a/org/w3c/css/properties/css/CssBorderBottom.java
+++ b/org/w3c/css/properties/css/CssBorderBottom.java
@@ -22,7 +22,6 @@ public class CssBorderBottom extends CssProperty {
public CssBorderBottomColor _color;
public CssBorderBottomStyle _style;
-
/**
* Create a new CssBorderBottom
*/
@@ -56,7 +55,6 @@ public CssBorderBottom(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -71,14 +69,6 @@ public final String getPropertyName() {
return "border-bottom";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderBottomColor.java b/org/w3c/css/properties/css/CssBorderBottomColor.java
index d9e05ac27..c47cc31fb 100644
--- a/org/w3c/css/properties/css/CssBorderBottomColor.java
+++ b/org/w3c/css/properties/css/CssBorderBottomColor.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBottomColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBottomLeftRadius.java b/org/w3c/css/properties/css/CssBorderBottomLeftRadius.java
index 864e034d2..c429d707e 100644
--- a/org/w3c/css/properties/css/CssBorderBottomLeftRadius.java
+++ b/org/w3c/css/properties/css/CssBorderBottomLeftRadius.java
@@ -92,10 +92,14 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (value == null && h_radius != null) {
syncval();
}
- return value.toString();
+ valueString = value.toString();
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css/CssBorderBottomRightRadius.java b/org/w3c/css/properties/css/CssBorderBottomRightRadius.java
index efa35ed3f..d70ad2a9d 100644
--- a/org/w3c/css/properties/css/CssBorderBottomRightRadius.java
+++ b/org/w3c/css/properties/css/CssBorderBottomRightRadius.java
@@ -92,10 +92,14 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if ((value == null) && (h_radius != null)) {
syncval();
}
- return value.toString();
+ valueString = value.toString();
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css/CssBorderBottomStyle.java b/org/w3c/css/properties/css/CssBorderBottomStyle.java
index 0fa628698..93961924f 100644
--- a/org/w3c/css/properties/css/CssBorderBottomStyle.java
+++ b/org/w3c/css/properties/css/CssBorderBottomStyle.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBottomStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderBottomWidth.java b/org/w3c/css/properties/css/CssBorderBottomWidth.java
index 17479cc35..465877aa8 100644
--- a/org/w3c/css/properties/css/CssBorderBottomWidth.java
+++ b/org/w3c/css/properties/css/CssBorderBottomWidth.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderBottomWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderCollapse.java b/org/w3c/css/properties/css/CssBorderCollapse.java
index a850b35e0..b64abc54d 100644
--- a/org/w3c/css/properties/css/CssBorderCollapse.java
+++ b/org/w3c/css/properties/css/CssBorderCollapse.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderCollapse) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderColor.java b/org/w3c/css/properties/css/CssBorderColor.java
index d7cb91314..d6c763b33 100644
--- a/org/w3c/css/properties/css/CssBorderColor.java
+++ b/org/w3c/css/properties/css/CssBorderColor.java
@@ -58,7 +58,6 @@ public CssBorderColor(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -80,14 +79,6 @@ public final String getPropertyName() {
return "border-color";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
@@ -135,7 +126,6 @@ public boolean equals(CssProperty property) {
((right != null && right.equals(other.right)) || (right == null && other.right == null)) &&
((top != null && top.equals(other.top)) || (top == null && other.top == null));
-
} catch (ClassCastException cce) {
}
return false;
diff --git a/org/w3c/css/properties/css/CssBorderEndEndRadius.java b/org/w3c/css/properties/css/CssBorderEndEndRadius.java
index de9a9ce42..6d039563d 100644
--- a/org/w3c/css/properties/css/CssBorderEndEndRadius.java
+++ b/org/w3c/css/properties/css/CssBorderEndEndRadius.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderEndEndRadius) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderEndStartRadius.java b/org/w3c/css/properties/css/CssBorderEndStartRadius.java
index c8a3134ad..f0a4ef756 100644
--- a/org/w3c/css/properties/css/CssBorderEndStartRadius.java
+++ b/org/w3c/css/properties/css/CssBorderEndStartRadius.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderEndStartRadius) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderImage.java b/org/w3c/css/properties/css/CssBorderImage.java
index cfc13357a..e034a70e8 100644
--- a/org/w3c/css/properties/css/CssBorderImage.java
+++ b/org/w3c/css/properties/css/CssBorderImage.java
@@ -23,7 +23,6 @@ public class CssBorderImage extends CssProperty {
public CssBorderImageOutset outset;
public CssBorderImageRepeat repeat;
-
public boolean shorthand;
/**
@@ -59,7 +58,6 @@ public CssBorderImage(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -74,14 +72,6 @@ public final String getPropertyName() {
return "border-image";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderImageOutset.java b/org/w3c/css/properties/css/CssBorderImageOutset.java
index 9ebb4714e..615b84a36 100644
--- a/org/w3c/css/properties/css/CssBorderImageOutset.java
+++ b/org/w3c/css/properties/css/CssBorderImageOutset.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderImageOutset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderImageRepeat.java b/org/w3c/css/properties/css/CssBorderImageRepeat.java
index 42a064717..cd777a7d7 100644
--- a/org/w3c/css/properties/css/CssBorderImageRepeat.java
+++ b/org/w3c/css/properties/css/CssBorderImageRepeat.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderImageRepeat) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderImageSlice.java b/org/w3c/css/properties/css/CssBorderImageSlice.java
index 4f2f80891..14fafd0ad 100644
--- a/org/w3c/css/properties/css/CssBorderImageSlice.java
+++ b/org/w3c/css/properties/css/CssBorderImageSlice.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderImageSlice) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderImageSource.java b/org/w3c/css/properties/css/CssBorderImageSource.java
index 79e151d22..fade0e992 100644
--- a/org/w3c/css/properties/css/CssBorderImageSource.java
+++ b/org/w3c/css/properties/css/CssBorderImageSource.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderImageSource) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderImageWidth.java b/org/w3c/css/properties/css/CssBorderImageWidth.java
index 9a9f10d8f..c1ee9af2f 100644
--- a/org/w3c/css/properties/css/CssBorderImageWidth.java
+++ b/org/w3c/css/properties/css/CssBorderImageWidth.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderImageWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInline.java b/org/w3c/css/properties/css/CssBorderInline.java
index 7aac9f230..3c4673db3 100644
--- a/org/w3c/css/properties/css/CssBorderInline.java
+++ b/org/w3c/css/properties/css/CssBorderInline.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineColor.java b/org/w3c/css/properties/css/CssBorderInlineColor.java
index f0590e583..ddb3b1045 100644
--- a/org/w3c/css/properties/css/CssBorderInlineColor.java
+++ b/org/w3c/css/properties/css/CssBorderInlineColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineEnd.java b/org/w3c/css/properties/css/CssBorderInlineEnd.java
index 070e4b116..06bd93d00 100644
--- a/org/w3c/css/properties/css/CssBorderInlineEnd.java
+++ b/org/w3c/css/properties/css/CssBorderInlineEnd.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineEndColor.java b/org/w3c/css/properties/css/CssBorderInlineEndColor.java
index 9c90cfba0..1538a6f55 100644
--- a/org/w3c/css/properties/css/CssBorderInlineEndColor.java
+++ b/org/w3c/css/properties/css/CssBorderInlineEndColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineEndColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineEndStyle.java b/org/w3c/css/properties/css/CssBorderInlineEndStyle.java
index 5e1d78174..c4c64e0bb 100644
--- a/org/w3c/css/properties/css/CssBorderInlineEndStyle.java
+++ b/org/w3c/css/properties/css/CssBorderInlineEndStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineEndStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineEndWidth.java b/org/w3c/css/properties/css/CssBorderInlineEndWidth.java
index 82c5479bd..a7653b736 100644
--- a/org/w3c/css/properties/css/CssBorderInlineEndWidth.java
+++ b/org/w3c/css/properties/css/CssBorderInlineEndWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineEndWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineStart.java b/org/w3c/css/properties/css/CssBorderInlineStart.java
index 78ee5ced4..52815a6a1 100644
--- a/org/w3c/css/properties/css/CssBorderInlineStart.java
+++ b/org/w3c/css/properties/css/CssBorderInlineStart.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineStartColor.java b/org/w3c/css/properties/css/CssBorderInlineStartColor.java
index 530d2b93e..712a05557 100644
--- a/org/w3c/css/properties/css/CssBorderInlineStartColor.java
+++ b/org/w3c/css/properties/css/CssBorderInlineStartColor.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineStartColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineStartStyle.java b/org/w3c/css/properties/css/CssBorderInlineStartStyle.java
index 55ff0e4fa..82c02b1e9 100644
--- a/org/w3c/css/properties/css/CssBorderInlineStartStyle.java
+++ b/org/w3c/css/properties/css/CssBorderInlineStartStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineStartStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineStartWidth.java b/org/w3c/css/properties/css/CssBorderInlineStartWidth.java
index 7d19ed0b0..8ef371e1a 100644
--- a/org/w3c/css/properties/css/CssBorderInlineStartWidth.java
+++ b/org/w3c/css/properties/css/CssBorderInlineStartWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderInlineStartWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineStyle.java b/org/w3c/css/properties/css/CssBorderInlineStyle.java
index eff982613..436493c5c 100644
--- a/org/w3c/css/properties/css/CssBorderInlineStyle.java
+++ b/org/w3c/css/properties/css/CssBorderInlineStyle.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderInlineWidth.java b/org/w3c/css/properties/css/CssBorderInlineWidth.java
index e96c1ec49..e79458d03 100644
--- a/org/w3c/css/properties/css/CssBorderInlineWidth.java
+++ b/org/w3c/css/properties/css/CssBorderInlineWidth.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssBorderLeft.java b/org/w3c/css/properties/css/CssBorderLeft.java
index 4b0e5ac3c..9a84a4c44 100644
--- a/org/w3c/css/properties/css/CssBorderLeft.java
+++ b/org/w3c/css/properties/css/CssBorderLeft.java
@@ -56,7 +56,6 @@ public CssBorderLeft(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -71,14 +70,6 @@ public final String getPropertyName() {
return "border-left";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderLeftColor.java b/org/w3c/css/properties/css/CssBorderLeftColor.java
index 0cf6f99ee..830040002 100644
--- a/org/w3c/css/properties/css/CssBorderLeftColor.java
+++ b/org/w3c/css/properties/css/CssBorderLeftColor.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderLeftColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderLeftStyle.java b/org/w3c/css/properties/css/CssBorderLeftStyle.java
index be801b800..a4dacfcd2 100644
--- a/org/w3c/css/properties/css/CssBorderLeftStyle.java
+++ b/org/w3c/css/properties/css/CssBorderLeftStyle.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderLeftStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderLeftWidth.java b/org/w3c/css/properties/css/CssBorderLeftWidth.java
index 8f992743c..303ced6ee 100644
--- a/org/w3c/css/properties/css/CssBorderLeftWidth.java
+++ b/org/w3c/css/properties/css/CssBorderLeftWidth.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderLeftWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderRadius.java b/org/w3c/css/properties/css/CssBorderRadius.java
index 3e082aa8e..7e47de876 100644
--- a/org/w3c/css/properties/css/CssBorderRadius.java
+++ b/org/w3c/css/properties/css/CssBorderRadius.java
@@ -58,7 +58,6 @@ public CssBorderRadius(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -73,14 +72,6 @@ public final String getPropertyName() {
return "border-radius";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderRight.java b/org/w3c/css/properties/css/CssBorderRight.java
index 663f6c5d1..e11f56a21 100644
--- a/org/w3c/css/properties/css/CssBorderRight.java
+++ b/org/w3c/css/properties/css/CssBorderRight.java
@@ -55,7 +55,6 @@ public CssBorderRight(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -70,14 +69,6 @@ public final String getPropertyName() {
return "border-right";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderRightColor.java b/org/w3c/css/properties/css/CssBorderRightColor.java
index 54355df9b..ede2b848c 100644
--- a/org/w3c/css/properties/css/CssBorderRightColor.java
+++ b/org/w3c/css/properties/css/CssBorderRightColor.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderRightColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderRightStyle.java b/org/w3c/css/properties/css/CssBorderRightStyle.java
index 8dfdb15f0..14a3c28ec 100644
--- a/org/w3c/css/properties/css/CssBorderRightStyle.java
+++ b/org/w3c/css/properties/css/CssBorderRightStyle.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderRightStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderRightWidth.java b/org/w3c/css/properties/css/CssBorderRightWidth.java
index 37a267638..fbdef3c95 100644
--- a/org/w3c/css/properties/css/CssBorderRightWidth.java
+++ b/org/w3c/css/properties/css/CssBorderRightWidth.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderRightWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderSpacing.java b/org/w3c/css/properties/css/CssBorderSpacing.java
index a5a2d8e4e..87f43b2c2 100644
--- a/org/w3c/css/properties/css/CssBorderSpacing.java
+++ b/org/w3c/css/properties/css/CssBorderSpacing.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderSpacing) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderStartEndRadius.java b/org/w3c/css/properties/css/CssBorderStartEndRadius.java
index 0438f19dc..268ca6385 100644
--- a/org/w3c/css/properties/css/CssBorderStartEndRadius.java
+++ b/org/w3c/css/properties/css/CssBorderStartEndRadius.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderStartEndRadius) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderStartStartRadius.java b/org/w3c/css/properties/css/CssBorderStartStartRadius.java
index ac6444d63..cf0425180 100644
--- a/org/w3c/css/properties/css/CssBorderStartStartRadius.java
+++ b/org/w3c/css/properties/css/CssBorderStartStartRadius.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -91,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderStartStartRadius) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderStyle.java b/org/w3c/css/properties/css/CssBorderStyle.java
index 4ae1955e7..397f449f9 100644
--- a/org/w3c/css/properties/css/CssBorderStyle.java
+++ b/org/w3c/css/properties/css/CssBorderStyle.java
@@ -57,7 +57,6 @@ public CssBorderStyle(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -72,13 +71,6 @@ public final String getPropertyName() {
return "border-style";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle
*
@@ -126,7 +118,6 @@ public boolean equals(CssProperty property) {
((right != null && right.equals(other.right)) || (right == null && other.right == null)) &&
((top != null && top.equals(other.top)) || (top == null && other.top == null));
-
} catch (ClassCastException cce) {
}
return false;
diff --git a/org/w3c/css/properties/css/CssBorderTop.java b/org/w3c/css/properties/css/CssBorderTop.java
index 4d81d996e..e19cfd30a 100644
--- a/org/w3c/css/properties/css/CssBorderTop.java
+++ b/org/w3c/css/properties/css/CssBorderTop.java
@@ -55,7 +55,6 @@ public CssBorderTop(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -70,14 +69,6 @@ public final String getPropertyName() {
return "border-top";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssBorderTopColor.java b/org/w3c/css/properties/css/CssBorderTopColor.java
index ecdd0f651..899f36761 100644
--- a/org/w3c/css/properties/css/CssBorderTopColor.java
+++ b/org/w3c/css/properties/css/CssBorderTopColor.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderTopColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderTopLeftRadius.java b/org/w3c/css/properties/css/CssBorderTopLeftRadius.java
index 22af1e4a1..6971dba1b 100644
--- a/org/w3c/css/properties/css/CssBorderTopLeftRadius.java
+++ b/org/w3c/css/properties/css/CssBorderTopLeftRadius.java
@@ -92,10 +92,14 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if ((value == null) && (h_radius != null)) {
syncval();
}
- return value.toString();
+ valueString = value.toString();
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css/CssBorderTopRightRadius.java b/org/w3c/css/properties/css/CssBorderTopRightRadius.java
index 59d00ca19..a8533c356 100644
--- a/org/w3c/css/properties/css/CssBorderTopRightRadius.java
+++ b/org/w3c/css/properties/css/CssBorderTopRightRadius.java
@@ -92,10 +92,13 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
- if ((value == null) && (h_radius != null)) {
- syncval();
+ if (valueString == null) {
+ if ((value == null) && (h_radius != null)) {
+ syncval();
+ }
+ valueString = value.toString();
}
- return value.toString();
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css/CssBorderTopStyle.java b/org/w3c/css/properties/css/CssBorderTopStyle.java
index 7f3948ffc..391f69a97 100644
--- a/org/w3c/css/properties/css/CssBorderTopStyle.java
+++ b/org/w3c/css/properties/css/CssBorderTopStyle.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderTopStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderTopWidth.java b/org/w3c/css/properties/css/CssBorderTopWidth.java
index e55c2ab50..9bc4e30e3 100644
--- a/org/w3c/css/properties/css/CssBorderTopWidth.java
+++ b/org/w3c/css/properties/css/CssBorderTopWidth.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBorderTopWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBorderWidth.java b/org/w3c/css/properties/css/CssBorderWidth.java
index 7d121976c..21cb119a8 100644
--- a/org/w3c/css/properties/css/CssBorderWidth.java
+++ b/org/w3c/css/properties/css/CssBorderWidth.java
@@ -57,7 +57,6 @@ public CssBorderWidth(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -72,14 +71,6 @@ public final String getPropertyName() {
return "border-width";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
@@ -128,7 +119,6 @@ public boolean equals(CssProperty property) {
((right != null && right.equals(other.right)) || (right == null && other.right == null)) &&
((top != null && top.equals(other.top)) || (top == null && other.top == null));
-
} catch (ClassCastException cce) {
}
return false;
diff --git a/org/w3c/css/properties/css/CssBottom.java b/org/w3c/css/properties/css/CssBottom.java
index b86c28104..cf17d9509 100644
--- a/org/w3c/css/properties/css/CssBottom.java
+++ b/org/w3c/css/properties/css/CssBottom.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBottom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBoxDecorationBreak.java b/org/w3c/css/properties/css/CssBoxDecorationBreak.java
index 15d46d3bd..6eabe09f9 100644
--- a/org/w3c/css/properties/css/CssBoxDecorationBreak.java
+++ b/org/w3c/css/properties/css/CssBoxDecorationBreak.java
@@ -101,13 +101,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBoxShadow.java b/org/w3c/css/properties/css/CssBoxShadow.java
index 45102ff24..b7f54a296 100644
--- a/org/w3c/css/properties/css/CssBoxShadow.java
+++ b/org/w3c/css/properties/css/CssBoxShadow.java
@@ -102,13 +102,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBoxSizing.java b/org/w3c/css/properties/css/CssBoxSizing.java
index 9a0487d2b..5961b7f14 100644
--- a/org/w3c/css/properties/css/CssBoxSizing.java
+++ b/org/w3c/css/properties/css/CssBoxSizing.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBoxSizing = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBoxSizing) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBoxSuppress.java b/org/w3c/css/properties/css/CssBoxSuppress.java
index 28fa3b4f0..2b61b1781 100644
--- a/org/w3c/css/properties/css/CssBoxSuppress.java
+++ b/org/w3c/css/properties/css/CssBoxSuppress.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssBoxSuppress = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBoxSuppress) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssBreakAfter.java b/org/w3c/css/properties/css/CssBreakAfter.java
index 71466d891..337151210 100644
--- a/org/w3c/css/properties/css/CssBreakAfter.java
+++ b/org/w3c/css/properties/css/CssBreakAfter.java
@@ -98,13 +98,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBreakBefore.java b/org/w3c/css/properties/css/CssBreakBefore.java
index ce909b073..e891fc5ef 100644
--- a/org/w3c/css/properties/css/CssBreakBefore.java
+++ b/org/w3c/css/properties/css/CssBreakBefore.java
@@ -101,13 +101,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssBreakInside.java b/org/w3c/css/properties/css/CssBreakInside.java
index b5607ad04..3c29a2272 100644
--- a/org/w3c/css/properties/css/CssBreakInside.java
+++ b/org/w3c/css/properties/css/CssBreakInside.java
@@ -98,13 +98,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssCaptionSide.java b/org/w3c/css/properties/css/CssCaptionSide.java
index 2ecbd170c..62410b4a4 100644
--- a/org/w3c/css/properties/css/CssCaptionSide.java
+++ b/org/w3c/css/properties/css/CssCaptionSide.java
@@ -49,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCaptionSide) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCaret.java b/org/w3c/css/properties/css/CssCaret.java
index 39ff89479..1a7ae34be 100644
--- a/org/w3c/css/properties/css/CssCaret.java
+++ b/org/w3c/css/properties/css/CssCaret.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssCaret = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCaret) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCaretColor.java b/org/w3c/css/properties/css/CssCaretColor.java
index edc67ee91..d79a7f524 100644
--- a/org/w3c/css/properties/css/CssCaretColor.java
+++ b/org/w3c/css/properties/css/CssCaretColor.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssCaretColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCaretColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCaretShape.java b/org/w3c/css/properties/css/CssCaretShape.java
index 27321a4b7..39af3c53f 100644
--- a/org/w3c/css/properties/css/CssCaretShape.java
+++ b/org/w3c/css/properties/css/CssCaretShape.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssCaretShape = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCaretShape) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssClear.java b/org/w3c/css/properties/css/CssClear.java
index 31a69a661..604d07fcb 100644
--- a/org/w3c/css/properties/css/CssClear.java
+++ b/org/w3c/css/properties/css/CssClear.java
@@ -22,7 +22,6 @@ public class CssClear extends CssProperty {
public CssClear() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -50,7 +49,6 @@ public CssClear(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -58,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +63,6 @@ public final String getPropertyName() {
return "clear";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssClip.java b/org/w3c/css/properties/css/CssClip.java
index fd7123c1b..8f3ea8ca3 100644
--- a/org/w3c/css/properties/css/CssClip.java
+++ b/org/w3c/css/properties/css/CssClip.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssClip) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssClipPath.java b/org/w3c/css/properties/css/CssClipPath.java
index 7de8e823d..5ee6b9749 100644
--- a/org/w3c/css/properties/css/CssClipPath.java
+++ b/org/w3c/css/properties/css/CssClipPath.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssClipPath = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssClipPath) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssClipRule.java b/org/w3c/css/properties/css/CssClipRule.java
index 7fc1c19a3..140617e29 100644
--- a/org/w3c/css/properties/css/CssClipRule.java
+++ b/org/w3c/css/properties/css/CssClipRule.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssClipRule = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssClipRule) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorAdjust.java b/org/w3c/css/properties/css/CssColorAdjust.java
index 3c7848184..31d92c250 100644
--- a/org/w3c/css/properties/css/CssColorAdjust.java
+++ b/org/w3c/css/properties/css/CssColorAdjust.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorInterpolation.java b/org/w3c/css/properties/css/CssColorInterpolation.java
index 09efe1121..cad5cfa5b 100644
--- a/org/w3c/css/properties/css/CssColorInterpolation.java
+++ b/org/w3c/css/properties/css/CssColorInterpolation.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorInterpolation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorInterpolation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorInterpolationFilters.java b/org/w3c/css/properties/css/CssColorInterpolationFilters.java
index 34b7edcd0..83dd0040a 100644
--- a/org/w3c/css/properties/css/CssColorInterpolationFilters.java
+++ b/org/w3c/css/properties/css/CssColorInterpolationFilters.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorInterpolationFilters = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorInterpolationFilters) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorProfile.java b/org/w3c/css/properties/css/CssColorProfile.java
index 88b0e22ad..e69dd6274 100644
--- a/org/w3c/css/properties/css/CssColorProfile.java
+++ b/org/w3c/css/properties/css/CssColorProfile.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorProfile = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorProfile) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorRendering.java b/org/w3c/css/properties/css/CssColorRendering.java
index 98cbaec07..a14e74e51 100644
--- a/org/w3c/css/properties/css/CssColorRendering.java
+++ b/org/w3c/css/properties/css/CssColorRendering.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorRendering = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorRendering) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColorScheme.java b/org/w3c/css/properties/css/CssColorScheme.java
index 9a773ce9e..1244e42fb 100644
--- a/org/w3c/css/properties/css/CssColorScheme.java
+++ b/org/w3c/css/properties/css/CssColorScheme.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssColorScheme = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssColorScheme) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssColumnCount.java b/org/w3c/css/properties/css/CssColumnCount.java
index 2532e4591..5eeb2bb95 100644
--- a/org/w3c/css/properties/css/CssColumnCount.java
+++ b/org/w3c/css/properties/css/CssColumnCount.java
@@ -100,13 +100,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by alle macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnFill.java b/org/w3c/css/properties/css/CssColumnFill.java
index 2342a7b03..efc5baf2a 100644
--- a/org/w3c/css/properties/css/CssColumnFill.java
+++ b/org/w3c/css/properties/css/CssColumnFill.java
@@ -102,13 +102,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnGap.java b/org/w3c/css/properties/css/CssColumnGap.java
index 4ce51bf3a..3db0f305e 100644
--- a/org/w3c/css/properties/css/CssColumnGap.java
+++ b/org/w3c/css/properties/css/CssColumnGap.java
@@ -98,13 +98,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnRule.java b/org/w3c/css/properties/css/CssColumnRule.java
index 44a2b3c29..17ce4ebba 100644
--- a/org/w3c/css/properties/css/CssColumnRule.java
+++ b/org/w3c/css/properties/css/CssColumnRule.java
@@ -105,10 +105,4 @@ public Object get() {
return value;
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
}
diff --git a/org/w3c/css/properties/css/CssColumnRuleColor.java b/org/w3c/css/properties/css/CssColumnRuleColor.java
index 550dc7b24..a5184a72d 100644
--- a/org/w3c/css/properties/css/CssColumnRuleColor.java
+++ b/org/w3c/css/properties/css/CssColumnRuleColor.java
@@ -100,13 +100,6 @@ public boolean isSoftlyInherited() {
return inherit == value;
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnRuleStyle.java b/org/w3c/css/properties/css/CssColumnRuleStyle.java
index d6b5b4a8f..97dfcd416 100644
--- a/org/w3c/css/properties/css/CssColumnRuleStyle.java
+++ b/org/w3c/css/properties/css/CssColumnRuleStyle.java
@@ -101,13 +101,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnRuleWidth.java b/org/w3c/css/properties/css/CssColumnRuleWidth.java
index c8773ddf4..28e7a4ac4 100644
--- a/org/w3c/css/properties/css/CssColumnRuleWidth.java
+++ b/org/w3c/css/properties/css/CssColumnRuleWidth.java
@@ -5,7 +5,6 @@
// COPYRIGHT (c) 1995-2018 World Wide Web Consortium, (MIT, ERCIM and Keio)
// Please first read the full copyright statement in file COPYRIGHT.html
-
package org.w3c.css.properties.css;
import org.w3c.css.parser.CssStyle;
@@ -99,13 +98,6 @@ public boolean isSoftlyInherited() {
return inherit == value;
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by alle macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnSpan.java b/org/w3c/css/properties/css/CssColumnSpan.java
index 61dd28ad8..c4ccf9930 100644
--- a/org/w3c/css/properties/css/CssColumnSpan.java
+++ b/org/w3c/css/properties/css/CssColumnSpan.java
@@ -100,13 +100,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumnWidth.java b/org/w3c/css/properties/css/CssColumnWidth.java
index 7d5756e19..00c314237 100644
--- a/org/w3c/css/properties/css/CssColumnWidth.java
+++ b/org/w3c/css/properties/css/CssColumnWidth.java
@@ -36,7 +36,6 @@ public CssColumnWidth() {
public CssColumnWidth(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
-
throw new InvalidParamException("unrecognize", ac);
}
@@ -100,13 +99,6 @@ public boolean isSoftlyInherited() {
return inherit == value;
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssColumns.java b/org/w3c/css/properties/css/CssColumns.java
index d8ff4f899..e52cdd2fa 100644
--- a/org/w3c/css/properties/css/CssColumns.java
+++ b/org/w3c/css/properties/css/CssColumns.java
@@ -103,10 +103,4 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
}
diff --git a/org/w3c/css/properties/css/CssContain.java b/org/w3c/css/properties/css/CssContain.java
index b7e87ef93..02d23c69a 100644
--- a/org/w3c/css/properties/css/CssContain.java
+++ b/org/w3c/css/properties/css/CssContain.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssContain = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContain) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContainIntrinsicBlockSize.java b/org/w3c/css/properties/css/CssContainIntrinsicBlockSize.java
index 16499fdb9..60b0d1bc7 100644
--- a/org/w3c/css/properties/css/CssContainIntrinsicBlockSize.java
+++ b/org/w3c/css/properties/css/CssContainIntrinsicBlockSize.java
@@ -16,7 +16,6 @@
*/
public class CssContainIntrinsicBlockSize extends CssProperty {
-
/**
* Create a new CssContainIntrinsicBlockSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContainIntrinsicBlockSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContainIntrinsicHeight.java b/org/w3c/css/properties/css/CssContainIntrinsicHeight.java
index f67e8aa4f..b8c626acb 100644
--- a/org/w3c/css/properties/css/CssContainIntrinsicHeight.java
+++ b/org/w3c/css/properties/css/CssContainIntrinsicHeight.java
@@ -16,7 +16,6 @@
*/
public class CssContainIntrinsicHeight extends CssProperty {
-
/**
* Create a new CssContainIntrinsicHeight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContainIntrinsicHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContainIntrinsicInlineSize.java b/org/w3c/css/properties/css/CssContainIntrinsicInlineSize.java
index a49ca8e79..8fe1d1542 100644
--- a/org/w3c/css/properties/css/CssContainIntrinsicInlineSize.java
+++ b/org/w3c/css/properties/css/CssContainIntrinsicInlineSize.java
@@ -16,7 +16,6 @@
*/
public class CssContainIntrinsicInlineSize extends CssProperty {
-
/**
* Create a new CssContainIntrinsicInlineSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContainIntrinsicInlineSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContainIntrinsicSize.java b/org/w3c/css/properties/css/CssContainIntrinsicSize.java
index 764d1fea0..3fb5f4026 100644
--- a/org/w3c/css/properties/css/CssContainIntrinsicSize.java
+++ b/org/w3c/css/properties/css/CssContainIntrinsicSize.java
@@ -16,7 +16,6 @@
*/
public class CssContainIntrinsicSize extends CssProperty {
-
/**
* Create a new CssContainIntrinsicSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContainIntrinsicSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContainIntrinsicWidth.java b/org/w3c/css/properties/css/CssContainIntrinsicWidth.java
index ee18633a3..204de1ee8 100644
--- a/org/w3c/css/properties/css/CssContainIntrinsicWidth.java
+++ b/org/w3c/css/properties/css/CssContainIntrinsicWidth.java
@@ -16,7 +16,6 @@
*/
public class CssContainIntrinsicWidth extends CssProperty {
-
/**
* Create a new CssContainIntrinsicWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContainIntrinsicWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContent.java b/org/w3c/css/properties/css/CssContent.java
index e57de2871..ceabadd11 100644
--- a/org/w3c/css/properties/css/CssContent.java
+++ b/org/w3c/css/properties/css/CssContent.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssContent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssContentVisibility.java b/org/w3c/css/properties/css/CssContentVisibility.java
index 8b859201a..72f0f79ea 100644
--- a/org/w3c/css/properties/css/CssContentVisibility.java
+++ b/org/w3c/css/properties/css/CssContentVisibility.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssContentVisibility = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssContentVisibility) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCounterIncrement.java b/org/w3c/css/properties/css/CssCounterIncrement.java
index 01d5eec95..941c639f1 100644
--- a/org/w3c/css/properties/css/CssCounterIncrement.java
+++ b/org/w3c/css/properties/css/CssCounterIncrement.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCounterIncrement) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCounterReset.java b/org/w3c/css/properties/css/CssCounterReset.java
index a66e32b7d..a62975add 100644
--- a/org/w3c/css/properties/css/CssCounterReset.java
+++ b/org/w3c/css/properties/css/CssCounterReset.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCounterReset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCounterSet.java b/org/w3c/css/properties/css/CssCounterSet.java
index c930dd7ac..5ccea065f 100644
--- a/org/w3c/css/properties/css/CssCounterSet.java
+++ b/org/w3c/css/properties/css/CssCounterSet.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCounterSet) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCue.java b/org/w3c/css/properties/css/CssCue.java
index 29d417f73..a0475f419 100644
--- a/org/w3c/css/properties/css/CssCue.java
+++ b/org/w3c/css/properties/css/CssCue.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -98,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCue) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCueAfter.java b/org/w3c/css/properties/css/CssCueAfter.java
index 24484485b..420a9ba26 100644
--- a/org/w3c/css/properties/css/CssCueAfter.java
+++ b/org/w3c/css/properties/css/CssCueAfter.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCueAfter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCueBefore.java b/org/w3c/css/properties/css/CssCueBefore.java
index 799d18856..5a43372dd 100644
--- a/org/w3c/css/properties/css/CssCueBefore.java
+++ b/org/w3c/css/properties/css/CssCueBefore.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCueBefore) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCursor.java b/org/w3c/css/properties/css/CssCursor.java
index b50605899..943b20353 100644
--- a/org/w3c/css/properties/css/CssCursor.java
+++ b/org/w3c/css/properties/css/CssCursor.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssCursor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssCursor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssCustomProperty.java b/org/w3c/css/properties/css/CssCustomProperty.java
index 35b1b031c..e936d0494 100644
--- a/org/w3c/css/properties/css/CssCustomProperty.java
+++ b/org/w3c/css/properties/css/CssCustomProperty.java
@@ -58,13 +58,6 @@ public boolean isSoftlyInherited() {
return false;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Compares two properties for equality.
*
diff --git a/org/w3c/css/properties/css/CssDirection.java b/org/w3c/css/properties/css/CssDirection.java
index aeffa0eef..38da3c883 100644
--- a/org/w3c/css/properties/css/CssDirection.java
+++ b/org/w3c/css/properties/css/CssDirection.java
@@ -70,13 +70,6 @@ public boolean isSoftlyInherited() {
return value == inherit;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssDisplay.java b/org/w3c/css/properties/css/CssDisplay.java
index 929698c70..38eb82001 100644
--- a/org/w3c/css/properties/css/CssDisplay.java
+++ b/org/w3c/css/properties/css/CssDisplay.java
@@ -75,13 +75,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssDominantBaseline.java b/org/w3c/css/properties/css/CssDominantBaseline.java
index a8643934f..78f544dc5 100644
--- a/org/w3c/css/properties/css/CssDominantBaseline.java
+++ b/org/w3c/css/properties/css/CssDominantBaseline.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssDominantBaseline = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssDominantBaseline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssElevation.java b/org/w3c/css/properties/css/CssElevation.java
index 2bf02a1cc..30eea973b 100644
--- a/org/w3c/css/properties/css/CssElevation.java
+++ b/org/w3c/css/properties/css/CssElevation.java
@@ -12,7 +12,6 @@
import org.w3c.css.util.InvalidParamException;
import org.w3c.css.values.CssExpression;
-
/**
* @since CSS2
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssEmptyCells.java b/org/w3c/css/properties/css/CssEmptyCells.java
index 4aa3862e6..e5c335a41 100644
--- a/org/w3c/css/properties/css/CssEmptyCells.java
+++ b/org/w3c/css/properties/css/CssEmptyCells.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssEmptyCells) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssEnableBackground.java b/org/w3c/css/properties/css/CssEnableBackground.java
index 112fc1307..76f5460f5 100644
--- a/org/w3c/css/properties/css/CssEnableBackground.java
+++ b/org/w3c/css/properties/css/CssEnableBackground.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssEnableBackground = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssEnableBackground) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFill.java b/org/w3c/css/properties/css/CssFill.java
index f6c7cd5e1..0e0ae6774 100644
--- a/org/w3c/css/properties/css/CssFill.java
+++ b/org/w3c/css/properties/css/CssFill.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFill = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFill) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFillOpacity.java b/org/w3c/css/properties/css/CssFillOpacity.java
index bb09d0a23..a9f2d8be6 100644
--- a/org/w3c/css/properties/css/CssFillOpacity.java
+++ b/org/w3c/css/properties/css/CssFillOpacity.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFillOpacity = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFillOpacity) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFillRule.java b/org/w3c/css/properties/css/CssFillRule.java
index f1f3aaf69..94f58170c 100644
--- a/org/w3c/css/properties/css/CssFillRule.java
+++ b/org/w3c/css/properties/css/CssFillRule.java
@@ -16,7 +16,6 @@
*/
public class CssFillRule extends CssProperty {
-
/**
* Create a new CssFillRule
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFillRule = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFillRule) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFilter.java b/org/w3c/css/properties/css/CssFilter.java
index 226037766..8ac720a22 100644
--- a/org/w3c/css/properties/css/CssFilter.java
+++ b/org/w3c/css/properties/css/CssFilter.java
@@ -15,7 +15,6 @@
*/
public class CssFilter extends CssProperty {
-
/**
* Create a new CssFilter
*/
@@ -50,13 +49,6 @@ public String getPropertyName() {
return "filter";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. its value equals inherit
diff --git a/org/w3c/css/properties/css/CssFlex.java b/org/w3c/css/properties/css/CssFlex.java
index 840adbd9d..ad9fe567b 100644
--- a/org/w3c/css/properties/css/CssFlex.java
+++ b/org/w3c/css/properties/css/CssFlex.java
@@ -16,7 +16,6 @@
*/
public class CssFlex extends CssProperty {
-
/**
* Create a new CssFlex
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlex = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlex) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexBasis.java b/org/w3c/css/properties/css/CssFlexBasis.java
index 7784c4902..8cb8142d0 100644
--- a/org/w3c/css/properties/css/CssFlexBasis.java
+++ b/org/w3c/css/properties/css/CssFlexBasis.java
@@ -16,7 +16,6 @@
*/
public class CssFlexBasis extends CssProperty {
-
/**
* Create a new CssFlexBasis
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexBasis = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexBasis) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexDirection.java b/org/w3c/css/properties/css/CssFlexDirection.java
index b5f63905a..ccb8284d4 100644
--- a/org/w3c/css/properties/css/CssFlexDirection.java
+++ b/org/w3c/css/properties/css/CssFlexDirection.java
@@ -16,7 +16,6 @@
*/
public class CssFlexDirection extends CssProperty {
-
/**
* Create a new CssFlexDirection
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexDirection = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexDirection) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexFlow.java b/org/w3c/css/properties/css/CssFlexFlow.java
index 0d7df72c0..5ef08a7d6 100644
--- a/org/w3c/css/properties/css/CssFlexFlow.java
+++ b/org/w3c/css/properties/css/CssFlexFlow.java
@@ -16,7 +16,6 @@
*/
public class CssFlexFlow extends CssProperty {
-
/**
* Create a new CssFlexFlow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexFlow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexFlow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexGrow.java b/org/w3c/css/properties/css/CssFlexGrow.java
index 6b8374201..53f5a326a 100644
--- a/org/w3c/css/properties/css/CssFlexGrow.java
+++ b/org/w3c/css/properties/css/CssFlexGrow.java
@@ -16,7 +16,6 @@
*/
public class CssFlexGrow extends CssProperty {
-
/**
* Create a new CssFlexGrow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexGrow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexGrow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexShrink.java b/org/w3c/css/properties/css/CssFlexShrink.java
index 61f448675..5e90f0c5f 100644
--- a/org/w3c/css/properties/css/CssFlexShrink.java
+++ b/org/w3c/css/properties/css/CssFlexShrink.java
@@ -16,7 +16,6 @@
*/
public class CssFlexShrink extends CssProperty {
-
/**
* Create a new CssFlexShrink
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexShrink = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexShrink) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFlexWrap.java b/org/w3c/css/properties/css/CssFlexWrap.java
index 02038206c..4c7396a44 100644
--- a/org/w3c/css/properties/css/CssFlexWrap.java
+++ b/org/w3c/css/properties/css/CssFlexWrap.java
@@ -16,7 +16,6 @@
*/
public class CssFlexWrap extends CssProperty {
-
/**
* Create a new CssFlexWrap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFlexWrap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFlexWrap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFloat.java b/org/w3c/css/properties/css/CssFloat.java
index 429157495..cf876069a 100644
--- a/org/w3c/css/properties/css/CssFloat.java
+++ b/org/w3c/css/properties/css/CssFloat.java
@@ -16,14 +16,12 @@
*/
public class CssFloat extends CssProperty {
-
/**
* Create a new CssFloat
*/
public CssFloat() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssFloat(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "float";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssFloatDefer.java b/org/w3c/css/properties/css/CssFloatDefer.java
index 79b97503f..ca32a51b6 100644
--- a/org/w3c/css/properties/css/CssFloatDefer.java
+++ b/org/w3c/css/properties/css/CssFloatDefer.java
@@ -16,7 +16,6 @@
*/
public class CssFloatDefer extends CssProperty {
-
/**
* Create a new CssFloatDefer
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFloatDefer = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFloatDefer) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFloatOffset.java b/org/w3c/css/properties/css/CssFloatOffset.java
index a17de3b14..678de24fd 100644
--- a/org/w3c/css/properties/css/CssFloatOffset.java
+++ b/org/w3c/css/properties/css/CssFloatOffset.java
@@ -16,7 +16,6 @@
*/
public class CssFloatOffset extends CssProperty {
-
/**
* Create a new CssFloatOffset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFloatOffset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFloatOffset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFloatReference.java b/org/w3c/css/properties/css/CssFloatReference.java
index af54513f2..dde426a73 100644
--- a/org/w3c/css/properties/css/CssFloatReference.java
+++ b/org/w3c/css/properties/css/CssFloatReference.java
@@ -16,7 +16,6 @@
*/
public class CssFloatReference extends CssProperty {
-
/**
* Create a new CssFloatReference
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFloatReference = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFloatReference) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFloodColor.java b/org/w3c/css/properties/css/CssFloodColor.java
index b8f9551ea..8c1e23af6 100644
--- a/org/w3c/css/properties/css/CssFloodColor.java
+++ b/org/w3c/css/properties/css/CssFloodColor.java
@@ -16,7 +16,6 @@
*/
public class CssFloodColor extends CssProperty {
-
/**
* Create a new CssFloodColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFloodColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFloodColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFloodOpacity.java b/org/w3c/css/properties/css/CssFloodOpacity.java
index 396091713..d9f16907a 100644
--- a/org/w3c/css/properties/css/CssFloodOpacity.java
+++ b/org/w3c/css/properties/css/CssFloodOpacity.java
@@ -16,7 +16,6 @@
*/
public class CssFloodOpacity extends CssProperty {
-
/**
* Create a new CssFloodOpacity
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFloodOpacity = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFloodOpacity) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontFamily.java b/org/w3c/css/properties/css/CssFontFamily.java
index ab722cadf..e1dfc04f2 100644
--- a/org/w3c/css/properties/css/CssFontFamily.java
+++ b/org/w3c/css/properties/css/CssFontFamily.java
@@ -70,13 +70,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +82,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
cssFont.fontFamily = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +92,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontFamily) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontFeatureSettings.java b/org/w3c/css/properties/css/CssFontFeatureSettings.java
index 4bdbc8dc7..b80d39c45 100644
--- a/org/w3c/css/properties/css/CssFontFeatureSettings.java
+++ b/org/w3c/css/properties/css/CssFontFeatureSettings.java
@@ -17,7 +17,6 @@
*/
public class CssFontFeatureSettings extends CssProperty {
-
/**
* Create a new CssFontFeatureSettings
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontFeatureSettings = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontFeatureSettings) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontKerning.java b/org/w3c/css/properties/css/CssFontKerning.java
index d93cf25a5..59af1b221 100644
--- a/org/w3c/css/properties/css/CssFontKerning.java
+++ b/org/w3c/css/properties/css/CssFontKerning.java
@@ -17,7 +17,6 @@
*/
public class CssFontKerning extends CssProperty {
-
/**
* Create a new CssFontKerning
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontKerning = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontKerning) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontLanguageOverride.java b/org/w3c/css/properties/css/CssFontLanguageOverride.java
index a7bf340eb..e030ce24c 100644
--- a/org/w3c/css/properties/css/CssFontLanguageOverride.java
+++ b/org/w3c/css/properties/css/CssFontLanguageOverride.java
@@ -17,7 +17,6 @@
*/
public class CssFontLanguageOverride extends CssProperty {
-
/**
* Create a new CssFontLanguageOverride
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontLanguageOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontLanguageOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontOpticalSizing.java b/org/w3c/css/properties/css/CssFontOpticalSizing.java
index f4c21ead4..7b54f1036 100644
--- a/org/w3c/css/properties/css/CssFontOpticalSizing.java
+++ b/org/w3c/css/properties/css/CssFontOpticalSizing.java
@@ -16,7 +16,6 @@
*/
public class CssFontOpticalSizing extends CssProperty {
-
/**
* Create a new CssFontOpticalSizing
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontOpticalSizing = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontOpticalSizing) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontPalette.java b/org/w3c/css/properties/css/CssFontPalette.java
index fbde2199e..dbb3b5e1c 100644
--- a/org/w3c/css/properties/css/CssFontPalette.java
+++ b/org/w3c/css/properties/css/CssFontPalette.java
@@ -16,7 +16,6 @@
*/
public class CssFontPalette extends CssProperty {
-
/**
* Create a new CssFontPalette
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontPalette = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals((property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSize.java b/org/w3c/css/properties/css/CssFontSize.java
index 3f09d5024..22f1e49c0 100644
--- a/org/w3c/css/properties/css/CssFontSize.java
+++ b/org/w3c/css/properties/css/CssFontSize.java
@@ -17,7 +17,6 @@
*/
public class CssFontSize extends CssProperty {
-
/**
* Create a new CssFontSize
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
cssFont.fontSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSizeAdjust.java b/org/w3c/css/properties/css/CssFontSizeAdjust.java
index d2cf86230..7477d54be 100644
--- a/org/w3c/css/properties/css/CssFontSizeAdjust.java
+++ b/org/w3c/css/properties/css/CssFontSizeAdjust.java
@@ -17,7 +17,6 @@
*/
public class CssFontSizeAdjust extends CssProperty {
-
/**
* Create a new CssFontSizeAdjust
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSizeAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontSizeAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontStretch.java b/org/w3c/css/properties/css/CssFontStretch.java
index 5af0877b6..19a48ed8a 100644
--- a/org/w3c/css/properties/css/CssFontStretch.java
+++ b/org/w3c/css/properties/css/CssFontStretch.java
@@ -17,7 +17,6 @@
*/
public class CssFontStretch extends CssProperty {
-
/**
* Create a new CssFontStretch
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontStretch = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontStretch) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontStyle.java b/org/w3c/css/properties/css/CssFontStyle.java
index 5f8851a99..d3bfe8243 100644
--- a/org/w3c/css/properties/css/CssFontStyle.java
+++ b/org/w3c/css/properties/css/CssFontStyle.java
@@ -17,7 +17,6 @@
*/
public class CssFontStyle extends CssProperty {
-
/**
* Create a new CssFontStyle
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
cssFont.fontStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSynthesis.java b/org/w3c/css/properties/css/CssFontSynthesis.java
index d1f22c9bd..f27421771 100644
--- a/org/w3c/css/properties/css/CssFontSynthesis.java
+++ b/org/w3c/css/properties/css/CssFontSynthesis.java
@@ -17,7 +17,6 @@
*/
public class CssFontSynthesis extends CssProperty {
-
/**
* Create a new CssFontSynthesis
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSynthesis = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontSynthesis) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSynthesisPosition.java b/org/w3c/css/properties/css/CssFontSynthesisPosition.java
index 3cb8d9260..598971f8e 100644
--- a/org/w3c/css/properties/css/CssFontSynthesisPosition.java
+++ b/org/w3c/css/properties/css/CssFontSynthesisPosition.java
@@ -16,7 +16,6 @@
*/
public class CssFontSynthesisPosition extends CssProperty {
-
/**
* Create a new CssFontSynthesisPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSynthesisPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSynthesisSmallCaps.java b/org/w3c/css/properties/css/CssFontSynthesisSmallCaps.java
index 35a7cc9a0..18f8c7589 100644
--- a/org/w3c/css/properties/css/CssFontSynthesisSmallCaps.java
+++ b/org/w3c/css/properties/css/CssFontSynthesisSmallCaps.java
@@ -16,7 +16,6 @@
*/
public class CssFontSynthesisSmallCaps extends CssProperty {
-
/**
* Create a new CssFontSynthesisSmallCaps
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSynthesisSmallCaps = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSynthesisStyle.java b/org/w3c/css/properties/css/CssFontSynthesisStyle.java
index 9790b4583..c36038f34 100644
--- a/org/w3c/css/properties/css/CssFontSynthesisStyle.java
+++ b/org/w3c/css/properties/css/CssFontSynthesisStyle.java
@@ -16,7 +16,6 @@
*/
public class CssFontSynthesisStyle extends CssProperty {
-
/**
* Create a new CssFontSynthesisStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSynthesisStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontSynthesisWeight.java b/org/w3c/css/properties/css/CssFontSynthesisWeight.java
index 420bfa1d5..762ced605 100644
--- a/org/w3c/css/properties/css/CssFontSynthesisWeight.java
+++ b/org/w3c/css/properties/css/CssFontSynthesisWeight.java
@@ -16,7 +16,6 @@
*/
public class CssFontSynthesisWeight extends CssProperty {
-
/**
* Create a new CssFontSynthesisWeight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontSynthesisWeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariant.java b/org/w3c/css/properties/css/CssFontVariant.java
index 6565057ce..826d67fbb 100644
--- a/org/w3c/css/properties/css/CssFontVariant.java
+++ b/org/w3c/css/properties/css/CssFontVariant.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariant extends CssProperty {
-
/**
* Create a new CssFontVariant
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
cssFont.fontVariant = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariant) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantAlternates.java b/org/w3c/css/properties/css/CssFontVariantAlternates.java
index ead680828..4801e5896 100644
--- a/org/w3c/css/properties/css/CssFontVariantAlternates.java
+++ b/org/w3c/css/properties/css/CssFontVariantAlternates.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantAlternates extends CssProperty {
-
/**
* Create a new CssFontVariantAlternates
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantAlternates = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantAlternates) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantCaps.java b/org/w3c/css/properties/css/CssFontVariantCaps.java
index 7a73ec48c..5fa9e4c89 100644
--- a/org/w3c/css/properties/css/CssFontVariantCaps.java
+++ b/org/w3c/css/properties/css/CssFontVariantCaps.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantCaps extends CssProperty {
-
/**
* Create a new CssFontVariantCaps
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantCaps = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantCaps) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantEastAsian.java b/org/w3c/css/properties/css/CssFontVariantEastAsian.java
index ba5672db8..d7c6ea012 100644
--- a/org/w3c/css/properties/css/CssFontVariantEastAsian.java
+++ b/org/w3c/css/properties/css/CssFontVariantEastAsian.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantEastAsian extends CssProperty {
-
/**
* Create a new CssFontVariantEastAsian
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantEastAsian = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantEastAsian) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantEmoji.java b/org/w3c/css/properties/css/CssFontVariantEmoji.java
index 201f027b9..62ad8ca41 100644
--- a/org/w3c/css/properties/css/CssFontVariantEmoji.java
+++ b/org/w3c/css/properties/css/CssFontVariantEmoji.java
@@ -16,7 +16,6 @@
*/
public class CssFontVariantEmoji extends CssProperty {
-
/**
* Create a new CssFontVariantEmoji
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantEmoji = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantEmoji) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantLigatures.java b/org/w3c/css/properties/css/CssFontVariantLigatures.java
index 2c145f87b..d0e3cde86 100644
--- a/org/w3c/css/properties/css/CssFontVariantLigatures.java
+++ b/org/w3c/css/properties/css/CssFontVariantLigatures.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantLigatures extends CssProperty {
-
/**
* Create a new CssFontVariantLigatures
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantLigatures = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantLigatures) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantNumeric.java b/org/w3c/css/properties/css/CssFontVariantNumeric.java
index 169a421eb..f2da6a217 100644
--- a/org/w3c/css/properties/css/CssFontVariantNumeric.java
+++ b/org/w3c/css/properties/css/CssFontVariantNumeric.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantNumeric extends CssProperty {
-
/**
* Create a new CssFontVariantNumeric
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantNumeric = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariantNumeric) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariantPosition.java b/org/w3c/css/properties/css/CssFontVariantPosition.java
index 94a448f60..cc1eb6aef 100644
--- a/org/w3c/css/properties/css/CssFontVariantPosition.java
+++ b/org/w3c/css/properties/css/CssFontVariantPosition.java
@@ -17,7 +17,6 @@
*/
public class CssFontVariantPosition extends CssProperty {
-
/**
* Create a new CssFontVariantPosition
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariantPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontVariationSettings.java b/org/w3c/css/properties/css/CssFontVariationSettings.java
index 129cd2d28..7778d5187 100644
--- a/org/w3c/css/properties/css/CssFontVariationSettings.java
+++ b/org/w3c/css/properties/css/CssFontVariationSettings.java
@@ -16,7 +16,6 @@
*/
public class CssFontVariationSettings extends CssProperty {
-
/**
* Create a new CssFontVariationSettings
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontVariationSettings = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals((property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontWeight.java b/org/w3c/css/properties/css/CssFontWeight.java
index 3bf76962b..27b2b1c9e 100644
--- a/org/w3c/css/properties/css/CssFontWeight.java
+++ b/org/w3c/css/properties/css/CssFontWeight.java
@@ -17,7 +17,6 @@
*/
public class CssFontWeight extends CssProperty {
-
/**
* Create a new CssFontWeight
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
cssFont.fontWeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontWeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssFontWidth.java b/org/w3c/css/properties/css/CssFontWidth.java
index ebdd66d79..41e27a191 100644
--- a/org/w3c/css/properties/css/CssFontWidth.java
+++ b/org/w3c/css/properties/css/CssFontWidth.java
@@ -17,7 +17,6 @@
*/
public class CssFontWidth extends CssProperty {
-
/**
* Create a new CssFontWidth
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssFontWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssForcedColorAdjust.java b/org/w3c/css/properties/css/CssForcedColorAdjust.java
index faaf33bdf..43a64b696 100644
--- a/org/w3c/css/properties/css/CssForcedColorAdjust.java
+++ b/org/w3c/css/properties/css/CssForcedColorAdjust.java
@@ -16,7 +16,6 @@
*/
public class CssForcedColorAdjust extends CssProperty {
-
/**
* Create a new CssForcedColorAdjust
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssForcedColorAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssForcedColorAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGap.java b/org/w3c/css/properties/css/CssGap.java
index 19dfd7037..5dd4ff58f 100644
--- a/org/w3c/css/properties/css/CssGap.java
+++ b/org/w3c/css/properties/css/CssGap.java
@@ -20,7 +20,6 @@ public class CssGap extends CssProperty {
private static final String propertyName = "gap";
-
/**
* Create a new CssGap
*/
@@ -98,13 +97,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssGlyphOrientationHorizontal.java b/org/w3c/css/properties/css/CssGlyphOrientationHorizontal.java
index 2cf0a108b..7144989d1 100644
--- a/org/w3c/css/properties/css/CssGlyphOrientationHorizontal.java
+++ b/org/w3c/css/properties/css/CssGlyphOrientationHorizontal.java
@@ -16,7 +16,6 @@
*/
public class CssGlyphOrientationHorizontal extends CssProperty {
-
/**
* Create a new CssGlyphOrientationHorizontal
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGlyphOrientationHorizontal = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGlyphOrientationHorizontal) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGlyphOrientationVertical.java b/org/w3c/css/properties/css/CssGlyphOrientationVertical.java
index 448157f44..b9885da04 100644
--- a/org/w3c/css/properties/css/CssGlyphOrientationVertical.java
+++ b/org/w3c/css/properties/css/CssGlyphOrientationVertical.java
@@ -16,7 +16,6 @@
*/
public class CssGlyphOrientationVertical extends CssProperty {
-
/**
* Create a new CssGlyphOrientationVertical
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGlyphOrientationVertical = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGlyphOrientationVertical) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGrid.java b/org/w3c/css/properties/css/CssGrid.java
index 11c9621bb..fb2d15242 100644
--- a/org/w3c/css/properties/css/CssGrid.java
+++ b/org/w3c/css/properties/css/CssGrid.java
@@ -16,7 +16,6 @@
*/
public class CssGrid extends CssProperty {
-
/**
* Create a new CssGrid
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGrid = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGrid) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridArea.java b/org/w3c/css/properties/css/CssGridArea.java
index 213f7731b..ff4c0eb0c 100644
--- a/org/w3c/css/properties/css/CssGridArea.java
+++ b/org/w3c/css/properties/css/CssGridArea.java
@@ -16,7 +16,6 @@
*/
public class CssGridArea extends CssProperty {
-
/**
* Create a new CssGridArea
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridArea = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridArea) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridAutoColumns.java b/org/w3c/css/properties/css/CssGridAutoColumns.java
index 1a489a982..726d14769 100644
--- a/org/w3c/css/properties/css/CssGridAutoColumns.java
+++ b/org/w3c/css/properties/css/CssGridAutoColumns.java
@@ -16,7 +16,6 @@
*/
public class CssGridAutoColumns extends CssProperty {
-
/**
* Create a new CssGridAutoColumns
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridAutoColumns = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridAutoColumns) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridAutoFlow.java b/org/w3c/css/properties/css/CssGridAutoFlow.java
index fe054cf15..e7343f2cc 100644
--- a/org/w3c/css/properties/css/CssGridAutoFlow.java
+++ b/org/w3c/css/properties/css/CssGridAutoFlow.java
@@ -16,7 +16,6 @@
*/
public class CssGridAutoFlow extends CssProperty {
-
/**
* Create a new CssGridAutoFlow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridAutoFlow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridAutoFlow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridAutoRows.java b/org/w3c/css/properties/css/CssGridAutoRows.java
index db4f0610c..81a0017d9 100644
--- a/org/w3c/css/properties/css/CssGridAutoRows.java
+++ b/org/w3c/css/properties/css/CssGridAutoRows.java
@@ -16,7 +16,6 @@
*/
public class CssGridAutoRows extends CssProperty {
-
/**
* Create a new CssGridAutoRows
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridAutoRows = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridAutoRows) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridColumn.java b/org/w3c/css/properties/css/CssGridColumn.java
index 9bbeeba09..53227ed3c 100644
--- a/org/w3c/css/properties/css/CssGridColumn.java
+++ b/org/w3c/css/properties/css/CssGridColumn.java
@@ -16,7 +16,6 @@
*/
public class CssGridColumn extends CssProperty {
-
/**
* Create a new CssGridColumn
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridColumn = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridColumn) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridColumnEnd.java b/org/w3c/css/properties/css/CssGridColumnEnd.java
index a54df371c..460e2c791 100644
--- a/org/w3c/css/properties/css/CssGridColumnEnd.java
+++ b/org/w3c/css/properties/css/CssGridColumnEnd.java
@@ -16,7 +16,6 @@
*/
public class CssGridColumnEnd extends CssProperty {
-
/**
* Create a new CssGridColumnEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridColumnEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridColumnEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridColumnGap.java b/org/w3c/css/properties/css/CssGridColumnGap.java
index b7926e562..529c1a61c 100644
--- a/org/w3c/css/properties/css/CssGridColumnGap.java
+++ b/org/w3c/css/properties/css/CssGridColumnGap.java
@@ -16,7 +16,6 @@
*/
public class CssGridColumnGap extends CssProperty {
-
/**
* Create a new CssGridColumnGap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridColumnGap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridColumnGap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridColumnStart.java b/org/w3c/css/properties/css/CssGridColumnStart.java
index 200d0f106..bc2f4a3d2 100644
--- a/org/w3c/css/properties/css/CssGridColumnStart.java
+++ b/org/w3c/css/properties/css/CssGridColumnStart.java
@@ -16,7 +16,6 @@
*/
public class CssGridColumnStart extends CssProperty {
-
/**
* Create a new CssGridColumnStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridColumnStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridColumnStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridGap.java b/org/w3c/css/properties/css/CssGridGap.java
index 7c70b0385..a051426ea 100644
--- a/org/w3c/css/properties/css/CssGridGap.java
+++ b/org/w3c/css/properties/css/CssGridGap.java
@@ -16,7 +16,6 @@
*/
public class CssGridGap extends CssProperty {
-
/**
* Create a new CssGridGap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridGap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridGap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridRow.java b/org/w3c/css/properties/css/CssGridRow.java
index b648722dc..829d1cbd4 100644
--- a/org/w3c/css/properties/css/CssGridRow.java
+++ b/org/w3c/css/properties/css/CssGridRow.java
@@ -16,7 +16,6 @@
*/
public class CssGridRow extends CssProperty {
-
/**
* Create a new CssGridRow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridRow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridRow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridRowEnd.java b/org/w3c/css/properties/css/CssGridRowEnd.java
index d477ba443..1f1b88440 100644
--- a/org/w3c/css/properties/css/CssGridRowEnd.java
+++ b/org/w3c/css/properties/css/CssGridRowEnd.java
@@ -16,7 +16,6 @@
*/
public class CssGridRowEnd extends CssProperty {
-
/**
* Create a new CssGridRowEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridRowEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridRowEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridRowGap.java b/org/w3c/css/properties/css/CssGridRowGap.java
index b3eb288d2..ab68fc485 100644
--- a/org/w3c/css/properties/css/CssGridRowGap.java
+++ b/org/w3c/css/properties/css/CssGridRowGap.java
@@ -16,7 +16,6 @@
*/
public class CssGridRowGap extends CssProperty {
-
/**
* Create a new CssGridRowGap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridRowGap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridRowGap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridRowStart.java b/org/w3c/css/properties/css/CssGridRowStart.java
index 7a5c1e913..ace0103de 100644
--- a/org/w3c/css/properties/css/CssGridRowStart.java
+++ b/org/w3c/css/properties/css/CssGridRowStart.java
@@ -16,7 +16,6 @@
*/
public class CssGridRowStart extends CssProperty {
-
/**
* Create a new CssGridRowStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridRowStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridRowStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridTemplate.java b/org/w3c/css/properties/css/CssGridTemplate.java
index bf5d6a66f..2046abe9c 100644
--- a/org/w3c/css/properties/css/CssGridTemplate.java
+++ b/org/w3c/css/properties/css/CssGridTemplate.java
@@ -16,7 +16,6 @@
*/
public class CssGridTemplate extends CssProperty {
-
/**
* Create a new CssGridTemplate
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridTemplate = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridTemplate) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridTemplateAreas.java b/org/w3c/css/properties/css/CssGridTemplateAreas.java
index 73e21115e..216c7f0c2 100644
--- a/org/w3c/css/properties/css/CssGridTemplateAreas.java
+++ b/org/w3c/css/properties/css/CssGridTemplateAreas.java
@@ -16,7 +16,6 @@
*/
public class CssGridTemplateAreas extends CssProperty {
-
/**
* Create a new CssGridTemplateAreas
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridTemplateAreas = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridTemplateAreas) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridTemplateColumns.java b/org/w3c/css/properties/css/CssGridTemplateColumns.java
index e76396862..3a9348ce7 100644
--- a/org/w3c/css/properties/css/CssGridTemplateColumns.java
+++ b/org/w3c/css/properties/css/CssGridTemplateColumns.java
@@ -16,7 +16,6 @@
*/
public class CssGridTemplateColumns extends CssProperty {
-
/**
* Create a new CssGridTemplateColumns
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridTemplateColumns = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridTemplateColumns) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssGridTemplateRows.java b/org/w3c/css/properties/css/CssGridTemplateRows.java
index ce4c1b778..fd3bfbe53 100644
--- a/org/w3c/css/properties/css/CssGridTemplateRows.java
+++ b/org/w3c/css/properties/css/CssGridTemplateRows.java
@@ -16,7 +16,6 @@
*/
public class CssGridTemplateRows extends CssProperty {
-
/**
* Create a new CssGridTemplateRows
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssGridTemplateRows = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssGridTemplateRows) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHangingPunctuation.java b/org/w3c/css/properties/css/CssHangingPunctuation.java
index 41b8c4b7b..a11766d3d 100644
--- a/org/w3c/css/properties/css/CssHangingPunctuation.java
+++ b/org/w3c/css/properties/css/CssHangingPunctuation.java
@@ -16,7 +16,6 @@
*/
public class CssHangingPunctuation extends CssProperty {
-
/**
* Create a new CssHangingPunctuation
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHangingPunctuation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHangingPunctuation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHeight.java b/org/w3c/css/properties/css/CssHeight.java
index a4340dd90..c5e153491 100644
--- a/org/w3c/css/properties/css/CssHeight.java
+++ b/org/w3c/css/properties/css/CssHeight.java
@@ -21,7 +21,6 @@ public class CssHeight extends CssProperty {
public static CssIdent auto = CssIdent.getIdent("auto");
-
/**
* Create a new CssWidth
*/
@@ -62,14 +61,6 @@ public boolean isSoftlyInherited() {
return value == inherit;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssHyphenateCharacter.java b/org/w3c/css/properties/css/CssHyphenateCharacter.java
index d6f1f61a1..b73bb4b5b 100644
--- a/org/w3c/css/properties/css/CssHyphenateCharacter.java
+++ b/org/w3c/css/properties/css/CssHyphenateCharacter.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphenateCharacter = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphenateCharacter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHyphenateLimitChars.java b/org/w3c/css/properties/css/CssHyphenateLimitChars.java
index 125cee3eb..e03dbc3ce 100644
--- a/org/w3c/css/properties/css/CssHyphenateLimitChars.java
+++ b/org/w3c/css/properties/css/CssHyphenateLimitChars.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphenateLimitChars = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphenateLimitChars) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHyphenateLimitLast.java b/org/w3c/css/properties/css/CssHyphenateLimitLast.java
index ff9a138cd..49921bcd5 100644
--- a/org/w3c/css/properties/css/CssHyphenateLimitLast.java
+++ b/org/w3c/css/properties/css/CssHyphenateLimitLast.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphenateLimitLast = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphenateLimitLast) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHyphenateLimitLines.java b/org/w3c/css/properties/css/CssHyphenateLimitLines.java
index 42fc22bb2..e79464a62 100644
--- a/org/w3c/css/properties/css/CssHyphenateLimitLines.java
+++ b/org/w3c/css/properties/css/CssHyphenateLimitLines.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphenateLimitLines = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphenateLimitLines) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHyphenateLimitZone.java b/org/w3c/css/properties/css/CssHyphenateLimitZone.java
index 96a7afa06..097e54a61 100644
--- a/org/w3c/css/properties/css/CssHyphenateLimitZone.java
+++ b/org/w3c/css/properties/css/CssHyphenateLimitZone.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphenateLimitZone = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphenateLimitZone) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssHyphens.java b/org/w3c/css/properties/css/CssHyphens.java
index 07eb61772..ce94c920d 100644
--- a/org/w3c/css/properties/css/CssHyphens.java
+++ b/org/w3c/css/properties/css/CssHyphens.java
@@ -16,7 +16,6 @@
*/
public class CssHyphens extends CssProperty {
-
/**
* Create a new CssHyphens
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssHyphens = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHyphens) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssIcon.java b/org/w3c/css/properties/css/CssIcon.java
index f058cbffd..86af631ed 100644
--- a/org/w3c/css/properties/css/CssIcon.java
+++ b/org/w3c/css/properties/css/CssIcon.java
@@ -16,7 +16,6 @@
*/
public class CssIcon extends CssProperty {
-
/**
* Create a new CssIcon
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssIcon = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssIcon) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssImageOrientation.java b/org/w3c/css/properties/css/CssImageOrientation.java
index dc95cab24..072bae0cd 100644
--- a/org/w3c/css/properties/css/CssImageOrientation.java
+++ b/org/w3c/css/properties/css/CssImageOrientation.java
@@ -16,7 +16,6 @@
*/
public class CssImageOrientation extends CssProperty {
-
/**
* Create a new CssImageOrientation
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssImageOrientation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssImageOrientation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssImageRendering.java b/org/w3c/css/properties/css/CssImageRendering.java
index 5a6b87b52..21cb239d7 100644
--- a/org/w3c/css/properties/css/CssImageRendering.java
+++ b/org/w3c/css/properties/css/CssImageRendering.java
@@ -16,7 +16,6 @@
*/
public class CssImageRendering extends CssProperty {
-
/**
* Create a new CssImageRendering
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssImageRendering = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssImageRendering) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssImageResolution.java b/org/w3c/css/properties/css/CssImageResolution.java
index 3bd80a86c..da5bf4af3 100644
--- a/org/w3c/css/properties/css/CssImageResolution.java
+++ b/org/w3c/css/properties/css/CssImageResolution.java
@@ -16,7 +16,6 @@
*/
public class CssImageResolution extends CssProperty {
-
/**
* Create a new CssImageResolution
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssImageResolution = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssImageResolution) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssImeMode.java b/org/w3c/css/properties/css/CssImeMode.java
index 80ea6a536..ae212f496 100644
--- a/org/w3c/css/properties/css/CssImeMode.java
+++ b/org/w3c/css/properties/css/CssImeMode.java
@@ -16,7 +16,6 @@
*/
public class CssImeMode extends CssProperty {
-
/**
* Create a new CssImeMode
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssImeMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssImeMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInitialLetter.java b/org/w3c/css/properties/css/CssInitialLetter.java
index 2afa0cb77..308abbbc7 100644
--- a/org/w3c/css/properties/css/CssInitialLetter.java
+++ b/org/w3c/css/properties/css/CssInitialLetter.java
@@ -16,7 +16,6 @@
*/
public class CssInitialLetter extends CssProperty {
-
/**
* Create a new CssInitialLetter
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssInitialLetter = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInitialLetter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInitialLetterAlign.java b/org/w3c/css/properties/css/CssInitialLetterAlign.java
index 8ebf5f2a8..435794d9c 100644
--- a/org/w3c/css/properties/css/CssInitialLetterAlign.java
+++ b/org/w3c/css/properties/css/CssInitialLetterAlign.java
@@ -16,7 +16,6 @@
*/
public class CssInitialLetterAlign extends CssProperty {
-
/**
* Create a new CssInitialLetterAlign
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssInitialLetterAlign = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInitialLetterAlign) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInitialLetterWrap.java b/org/w3c/css/properties/css/CssInitialLetterWrap.java
index bf8680091..745154fcb 100644
--- a/org/w3c/css/properties/css/CssInitialLetterWrap.java
+++ b/org/w3c/css/properties/css/CssInitialLetterWrap.java
@@ -16,7 +16,6 @@
*/
public class CssInitialLetterWrap extends CssProperty {
-
/**
* Create a new CssInitialLetterWrap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssInitialLetterWrap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInitialLetterWrap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInlineSize.java b/org/w3c/css/properties/css/CssInlineSize.java
index 7dba40535..fb3fc0147 100644
--- a/org/w3c/css/properties/css/CssInlineSize.java
+++ b/org/w3c/css/properties/css/CssInlineSize.java
@@ -16,7 +16,6 @@
*/
public class CssInlineSize extends CssProperty {
-
/**
* Create a new CssInlineSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssInlineSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInlineSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInlineSizing.java b/org/w3c/css/properties/css/CssInlineSizing.java
index a73a6c464..f395e3ee6 100644
--- a/org/w3c/css/properties/css/CssInlineSizing.java
+++ b/org/w3c/css/properties/css/CssInlineSizing.java
@@ -16,7 +16,6 @@
*/
public class CssInlineSizing extends CssProperty {
-
/**
* Create a new CssInlineSizing
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssInlineSizing = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInlineSizing) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInset.java b/org/w3c/css/properties/css/CssInset.java
index 67697735f..bfa0811a7 100644
--- a/org/w3c/css/properties/css/CssInset.java
+++ b/org/w3c/css/properties/css/CssInset.java
@@ -16,7 +16,6 @@
*/
public class CssInset extends CssProperty {
-
/**
* Create a new CssInset
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssInsetBlock.java b/org/w3c/css/properties/css/CssInsetBlock.java
index 9a6eb09c9..67252d4ca 100644
--- a/org/w3c/css/properties/css/CssInsetBlock.java
+++ b/org/w3c/css/properties/css/CssInsetBlock.java
@@ -16,7 +16,6 @@
*/
public class CssInsetBlock extends CssProperty {
-
/**
* Create a new CssInsetBlock
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssInsetBlockEnd.java b/org/w3c/css/properties/css/CssInsetBlockEnd.java
index d7e143894..9aeca2e73 100644
--- a/org/w3c/css/properties/css/CssInsetBlockEnd.java
+++ b/org/w3c/css/properties/css/CssInsetBlockEnd.java
@@ -16,7 +16,6 @@
*/
public class CssInsetBlockEnd extends CssProperty {
-
/**
* Create a new CssInsetBlockEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInsetBlockEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInsetBlockStart.java b/org/w3c/css/properties/css/CssInsetBlockStart.java
index fa4951f3c..e290334df 100644
--- a/org/w3c/css/properties/css/CssInsetBlockStart.java
+++ b/org/w3c/css/properties/css/CssInsetBlockStart.java
@@ -16,7 +16,6 @@
*/
public class CssInsetBlockStart extends CssProperty {
-
/**
* Create a new CssInsetBlockStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInsetBlockStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInsetInline.java b/org/w3c/css/properties/css/CssInsetInline.java
index a0fa998d8..996c8e245 100644
--- a/org/w3c/css/properties/css/CssInsetInline.java
+++ b/org/w3c/css/properties/css/CssInsetInline.java
@@ -16,7 +16,6 @@
*/
public class CssInsetInline extends CssProperty {
-
/**
* Create a new CssInsetInline
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssInsetInlineEnd.java b/org/w3c/css/properties/css/CssInsetInlineEnd.java
index 9f93a475f..73a80bcf7 100644
--- a/org/w3c/css/properties/css/CssInsetInlineEnd.java
+++ b/org/w3c/css/properties/css/CssInsetInlineEnd.java
@@ -16,7 +16,6 @@
*/
public class CssInsetInlineEnd extends CssProperty {
-
/**
* Create a new CssInsetInlineEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInsetInlineEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssInsetInlineStart.java b/org/w3c/css/properties/css/CssInsetInlineStart.java
index 2e5b6515b..769f99c27 100644
--- a/org/w3c/css/properties/css/CssInsetInlineStart.java
+++ b/org/w3c/css/properties/css/CssInsetInlineStart.java
@@ -16,7 +16,6 @@
*/
public class CssInsetInlineStart extends CssProperty {
-
/**
* Create a new CssInsetInlineStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssInsetInlineStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssIsolation.java b/org/w3c/css/properties/css/CssIsolation.java
index 88d39448d..cead80075 100644
--- a/org/w3c/css/properties/css/CssIsolation.java
+++ b/org/w3c/css/properties/css/CssIsolation.java
@@ -16,7 +16,6 @@
*/
public class CssIsolation extends CssProperty {
-
/**
* Create a new CssIsolation
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssIsolation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssIsolation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssJustifyContent.java b/org/w3c/css/properties/css/CssJustifyContent.java
index c4250adf1..5a41d512e 100644
--- a/org/w3c/css/properties/css/CssJustifyContent.java
+++ b/org/w3c/css/properties/css/CssJustifyContent.java
@@ -16,7 +16,6 @@
*/
public class CssJustifyContent extends CssProperty {
-
/**
* Create a new CssJustifyContent
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssJustifyContent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssJustifyContent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssJustifyItems.java b/org/w3c/css/properties/css/CssJustifyItems.java
index 75450cd33..54d0871de 100644
--- a/org/w3c/css/properties/css/CssJustifyItems.java
+++ b/org/w3c/css/properties/css/CssJustifyItems.java
@@ -16,7 +16,6 @@
*/
public class CssJustifyItems extends CssProperty {
-
/**
* Create a new CssJustifyItems
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssJustifyItems = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssJustifyItems) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssJustifySelf.java b/org/w3c/css/properties/css/CssJustifySelf.java
index 21953c141..cc81a20f6 100644
--- a/org/w3c/css/properties/css/CssJustifySelf.java
+++ b/org/w3c/css/properties/css/CssJustifySelf.java
@@ -16,7 +16,6 @@
*/
public class CssJustifySelf extends CssProperty {
-
/**
* Create a new CssJustifySelf
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssJustifySelf = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssJustifySelf) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssKerning.java b/org/w3c/css/properties/css/CssKerning.java
index b9edcd1c0..4eb25627b 100644
--- a/org/w3c/css/properties/css/CssKerning.java
+++ b/org/w3c/css/properties/css/CssKerning.java
@@ -16,7 +16,6 @@
*/
public class CssKerning extends CssProperty {
-
/**
* Create a new CssKerning
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssKerning = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssKerning) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssLeft.java b/org/w3c/css/properties/css/CssLeft.java
index 849572411..553439e9b 100644
--- a/org/w3c/css/properties/css/CssLeft.java
+++ b/org/w3c/css/properties/css/CssLeft.java
@@ -16,7 +16,6 @@
*/
public class CssLeft extends CssProperty {
-
/**
* Create a new CssLeft
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssLeft) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssLetterSpacing.java b/org/w3c/css/properties/css/CssLetterSpacing.java
index 984d75607..88554cc37 100644
--- a/org/w3c/css/properties/css/CssLetterSpacing.java
+++ b/org/w3c/css/properties/css/CssLetterSpacing.java
@@ -15,7 +15,6 @@
*/
public class CssLetterSpacing extends CssProperty {
-
/**
* Create a new CssLetterSpacing.
*/
@@ -62,13 +61,6 @@ public boolean isSoftlyInherited() {
return value == inherit;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Adds this property to a style.
*
diff --git a/org/w3c/css/properties/css/CssLightingColor.java b/org/w3c/css/properties/css/CssLightingColor.java
index d121d4249..7c0fd39a4 100644
--- a/org/w3c/css/properties/css/CssLightingColor.java
+++ b/org/w3c/css/properties/css/CssLightingColor.java
@@ -16,7 +16,6 @@
*/
public class CssLightingColor extends CssProperty {
-
/**
* Create a new CssLightingColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssLightingColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssLightingColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssLineBreak.java b/org/w3c/css/properties/css/CssLineBreak.java
index 3981e6632..00324e222 100644
--- a/org/w3c/css/properties/css/CssLineBreak.java
+++ b/org/w3c/css/properties/css/CssLineBreak.java
@@ -16,7 +16,6 @@
*/
public class CssLineBreak extends CssProperty {
-
/**
* Create a new CssLineBreak
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssLineBreak = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssLineBreak) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssLineHeight.java b/org/w3c/css/properties/css/CssLineHeight.java
index cda33c55d..e54e8e066 100644
--- a/org/w3c/css/properties/css/CssLineHeight.java
+++ b/org/w3c/css/properties/css/CssLineHeight.java
@@ -17,7 +17,6 @@
*/
public class CssLineHeight extends CssProperty {
-
/**
* Create a new CssLineHeight
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,14 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssLinePadding.java b/org/w3c/css/properties/css/CssLinePadding.java
index cac7b65c1..3c2f3cb93 100644
--- a/org/w3c/css/properties/css/CssLinePadding.java
+++ b/org/w3c/css/properties/css/CssLinePadding.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssLinePadding = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssLinePadding) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssListStyle.java b/org/w3c/css/properties/css/CssListStyle.java
index 0f1b82385..bcac68d51 100644
--- a/org/w3c/css/properties/css/CssListStyle.java
+++ b/org/w3c/css/properties/css/CssListStyle.java
@@ -17,7 +17,6 @@
*/
public class CssListStyle extends CssProperty {
-
public CssListStyleType cssListStyleType;
public CssListStyleImage cssListStyleImage;
public CssListStylePosition cssListStylePosition;
@@ -28,7 +27,6 @@ public class CssListStyle extends CssProperty {
public CssListStyle() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -56,7 +54,6 @@ public CssListStyle(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -64,7 +61,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -72,13 +68,6 @@ public final String getPropertyName() {
return "list-style";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssListStyleImage.java b/org/w3c/css/properties/css/CssListStyleImage.java
index 342b6479b..912b4a594 100644
--- a/org/w3c/css/properties/css/CssListStyleImage.java
+++ b/org/w3c/css/properties/css/CssListStyleImage.java
@@ -16,14 +16,12 @@
*/
public class CssListStyleImage extends CssProperty {
-
/**
* Create a new CssListStyleImage
*/
public CssListStyleImage() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssListStyleImage(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "list-style-image";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssListStylePosition.java b/org/w3c/css/properties/css/CssListStylePosition.java
index c6f07e97f..58839df80 100644
--- a/org/w3c/css/properties/css/CssListStylePosition.java
+++ b/org/w3c/css/properties/css/CssListStylePosition.java
@@ -16,14 +16,12 @@
*/
public class CssListStylePosition extends CssProperty {
-
/**
* Create a new CssListStylePosition
*/
public CssListStylePosition() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssListStylePosition(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "list-style-position";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssListStyleType.java b/org/w3c/css/properties/css/CssListStyleType.java
index 35ae86a45..a3ac840ad 100644
--- a/org/w3c/css/properties/css/CssListStyleType.java
+++ b/org/w3c/css/properties/css/CssListStyleType.java
@@ -16,14 +16,12 @@
*/
public class CssListStyleType extends CssProperty {
-
/**
* Create a new CssListStyleType
*/
public CssListStyleType() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssListStyleType(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "list-style-type";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMargin.java b/org/w3c/css/properties/css/CssMargin.java
index e71cd5995..facb048d1 100644
--- a/org/w3c/css/properties/css/CssMargin.java
+++ b/org/w3c/css/properties/css/CssMargin.java
@@ -16,8 +16,6 @@
*/
public class CssMargin extends CssProperty {
-
-
public CssMarginRight marginRight;
public CssMarginTop marginTop;
public CssMarginBottom marginBottom;
@@ -31,7 +29,6 @@ public class CssMargin extends CssProperty {
public CssMargin() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -59,7 +56,6 @@ public CssMargin(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -67,7 +63,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -75,13 +70,6 @@ public final String getPropertyName() {
return "margin";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMarginBlock.java b/org/w3c/css/properties/css/CssMarginBlock.java
index 9775d372c..e7f0a33bf 100644
--- a/org/w3c/css/properties/css/CssMarginBlock.java
+++ b/org/w3c/css/properties/css/CssMarginBlock.java
@@ -16,7 +16,6 @@
*/
public class CssMarginBlock extends CssProperty {
-
/**
* Create a new CssMarginBlock
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssMarginBlockEnd.java b/org/w3c/css/properties/css/CssMarginBlockEnd.java
index 180e3c202..5a97ef98f 100644
--- a/org/w3c/css/properties/css/CssMarginBlockEnd.java
+++ b/org/w3c/css/properties/css/CssMarginBlockEnd.java
@@ -16,7 +16,6 @@
*/
public class CssMarginBlockEnd extends CssProperty {
-
/**
* Create a new CssMarginBlockEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarginBlockEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarginBlockStart.java b/org/w3c/css/properties/css/CssMarginBlockStart.java
index 6cdd4e7e5..ac43d7f22 100644
--- a/org/w3c/css/properties/css/CssMarginBlockStart.java
+++ b/org/w3c/css/properties/css/CssMarginBlockStart.java
@@ -16,7 +16,6 @@
*/
public class CssMarginBlockStart extends CssProperty {
-
/**
* Create a new CssMarginBlockStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarginBlockStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarginBottom.java b/org/w3c/css/properties/css/CssMarginBottom.java
index cf552fd5a..9ec3fb228 100644
--- a/org/w3c/css/properties/css/CssMarginBottom.java
+++ b/org/w3c/css/properties/css/CssMarginBottom.java
@@ -16,14 +16,12 @@
*/
public class CssMarginBottom extends CssProperty {
-
/**
* Create a new CssMarginBottom
*/
public CssMarginBottom() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssMarginBottom(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "margin-bottom";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMarginInline.java b/org/w3c/css/properties/css/CssMarginInline.java
index 29ce65cd3..f2c22cf3f 100644
--- a/org/w3c/css/properties/css/CssMarginInline.java
+++ b/org/w3c/css/properties/css/CssMarginInline.java
@@ -16,7 +16,6 @@
*/
public class CssMarginInline extends CssProperty {
-
/**
* Create a new CssMarginInline
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssMarginInlineEnd.java b/org/w3c/css/properties/css/CssMarginInlineEnd.java
index 572e0d36f..c67479ea7 100644
--- a/org/w3c/css/properties/css/CssMarginInlineEnd.java
+++ b/org/w3c/css/properties/css/CssMarginInlineEnd.java
@@ -16,7 +16,6 @@
*/
public class CssMarginInlineEnd extends CssProperty {
-
/**
* Create a new CssMarginInlineEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarginInlineEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarginInlineStart.java b/org/w3c/css/properties/css/CssMarginInlineStart.java
index 8e8879e3a..ce868f3d6 100644
--- a/org/w3c/css/properties/css/CssMarginInlineStart.java
+++ b/org/w3c/css/properties/css/CssMarginInlineStart.java
@@ -16,7 +16,6 @@
*/
public class CssMarginInlineStart extends CssProperty {
-
/**
* Create a new CssMarginInlineStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarginInlineStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarginLeft.java b/org/w3c/css/properties/css/CssMarginLeft.java
index 5ede3fda4..d58e8f3f2 100644
--- a/org/w3c/css/properties/css/CssMarginLeft.java
+++ b/org/w3c/css/properties/css/CssMarginLeft.java
@@ -16,14 +16,12 @@
*/
public class CssMarginLeft extends CssProperty {
-
/**
* Create a new CssMarginLeft
*/
public CssMarginLeft() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssMarginLeft(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "margin-left";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMarginRight.java b/org/w3c/css/properties/css/CssMarginRight.java
index 9c2f5d8af..b3b6ee058 100644
--- a/org/w3c/css/properties/css/CssMarginRight.java
+++ b/org/w3c/css/properties/css/CssMarginRight.java
@@ -16,14 +16,12 @@
*/
public class CssMarginRight extends CssProperty {
-
/**
* Create a new CssMarginRight
*/
public CssMarginRight() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssMarginRight(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "margin-right";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMarginTop.java b/org/w3c/css/properties/css/CssMarginTop.java
index 219a85af0..690632b8d 100644
--- a/org/w3c/css/properties/css/CssMarginTop.java
+++ b/org/w3c/css/properties/css/CssMarginTop.java
@@ -16,14 +16,12 @@
*/
public class CssMarginTop extends CssProperty {
-
/**
* Create a new CssMarginTop
*/
public CssMarginTop() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssMarginTop(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "margin-top";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssMarker.java b/org/w3c/css/properties/css/CssMarker.java
index 77305d47c..9a13f54f7 100644
--- a/org/w3c/css/properties/css/CssMarker.java
+++ b/org/w3c/css/properties/css/CssMarker.java
@@ -16,7 +16,6 @@
*/
public class CssMarker extends CssProperty {
-
/**
* Create a new CssMarker
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -95,7 +86,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarker = this;
}
-
/**
* Compares two properties for equality.
*
@@ -106,7 +96,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarker) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarkerEnd.java b/org/w3c/css/properties/css/CssMarkerEnd.java
index cf1ac3627..4b214cf25 100644
--- a/org/w3c/css/properties/css/CssMarkerEnd.java
+++ b/org/w3c/css/properties/css/CssMarkerEnd.java
@@ -16,7 +16,6 @@
*/
public class CssMarkerEnd extends CssProperty {
-
/**
* Create a new CssMarkerEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarkerEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarkerEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarkerMid.java b/org/w3c/css/properties/css/CssMarkerMid.java
index 0f757225d..68eecbe28 100644
--- a/org/w3c/css/properties/css/CssMarkerMid.java
+++ b/org/w3c/css/properties/css/CssMarkerMid.java
@@ -16,7 +16,6 @@
*/
public class CssMarkerMid extends CssProperty {
-
/**
* Create a new CssMarkerMid
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarkerMid = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarkerMid) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarkerOffset.java b/org/w3c/css/properties/css/CssMarkerOffset.java
index c6be10b05..24415df80 100644
--- a/org/w3c/css/properties/css/CssMarkerOffset.java
+++ b/org/w3c/css/properties/css/CssMarkerOffset.java
@@ -16,7 +16,6 @@
*/
public class CssMarkerOffset extends CssProperty {
-
/**
* Create a new CssMarkerOffset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarkerOffset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarkerSide.java b/org/w3c/css/properties/css/CssMarkerSide.java
index eac77b08e..0c0a5a4e3 100644
--- a/org/w3c/css/properties/css/CssMarkerSide.java
+++ b/org/w3c/css/properties/css/CssMarkerSide.java
@@ -16,7 +16,6 @@
*/
public class CssMarkerSide extends CssProperty {
-
/**
* Create a new CssMarkerSide
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarkerSide) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarkerStart.java b/org/w3c/css/properties/css/CssMarkerStart.java
index 592f44a11..9b435ee37 100644
--- a/org/w3c/css/properties/css/CssMarkerStart.java
+++ b/org/w3c/css/properties/css/CssMarkerStart.java
@@ -16,7 +16,6 @@
*/
public class CssMarkerStart extends CssProperty {
-
/**
* Create a new CssMarkerStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarkerStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarkerStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarks.java b/org/w3c/css/properties/css/CssMarks.java
index 986829873..3144275f0 100644
--- a/org/w3c/css/properties/css/CssMarks.java
+++ b/org/w3c/css/properties/css/CssMarks.java
@@ -19,7 +19,6 @@ public class CssMarks extends CssProperty {
public static final String propertyName = "marks";
-
/**
* Create a new CssMarks
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssMarqueeDirection.java b/org/w3c/css/properties/css/CssMarqueeDirection.java
index 86ac76f34..9ebbe872d 100644
--- a/org/w3c/css/properties/css/CssMarqueeDirection.java
+++ b/org/w3c/css/properties/css/CssMarqueeDirection.java
@@ -16,7 +16,6 @@
*/
public class CssMarqueeDirection extends CssProperty {
-
/**
* Create a new CssMarqueeDirection
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarqueeDirection = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarqueeDirection) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarqueePlayCount.java b/org/w3c/css/properties/css/CssMarqueePlayCount.java
index 0026486c2..31ce2d344 100644
--- a/org/w3c/css/properties/css/CssMarqueePlayCount.java
+++ b/org/w3c/css/properties/css/CssMarqueePlayCount.java
@@ -16,7 +16,6 @@
*/
public class CssMarqueePlayCount extends CssProperty {
-
/**
* Create a new CssMarqueePlayCount
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarqueePlayCount = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarqueePlayCount) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarqueeSpeed.java b/org/w3c/css/properties/css/CssMarqueeSpeed.java
index 9131e11ec..270f3ff64 100644
--- a/org/w3c/css/properties/css/CssMarqueeSpeed.java
+++ b/org/w3c/css/properties/css/CssMarqueeSpeed.java
@@ -16,7 +16,6 @@
*/
public class CssMarqueeSpeed extends CssProperty {
-
/**
* Create a new CssMarqueeSpeed
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarqueeSpeed = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarqueeSpeed) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMarqueeStyle.java b/org/w3c/css/properties/css/CssMarqueeStyle.java
index fd1e10765..f340599fb 100644
--- a/org/w3c/css/properties/css/CssMarqueeStyle.java
+++ b/org/w3c/css/properties/css/CssMarqueeStyle.java
@@ -16,7 +16,6 @@
*/
public class CssMarqueeStyle extends CssProperty {
-
/**
* Create a new CssMarqueeStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMarqueeStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarqueeStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMask.java b/org/w3c/css/properties/css/CssMask.java
index e968a35cf..927741609 100644
--- a/org/w3c/css/properties/css/CssMask.java
+++ b/org/w3c/css/properties/css/CssMask.java
@@ -16,7 +16,6 @@
*/
public class CssMask extends CssProperty {
-
/**
* Create a new CssMask
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMask = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMask) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderMode.java b/org/w3c/css/properties/css/CssMaskBorderMode.java
index c85b4da72..ef8d57bd5 100644
--- a/org/w3c/css/properties/css/CssMaskBorderMode.java
+++ b/org/w3c/css/properties/css/CssMaskBorderMode.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderMode extends CssProperty {
-
/**
* Create a new CssBorderMaskMode
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderOutset.java b/org/w3c/css/properties/css/CssMaskBorderOutset.java
index 0bf94cd56..20bbef409 100644
--- a/org/w3c/css/properties/css/CssMaskBorderOutset.java
+++ b/org/w3c/css/properties/css/CssMaskBorderOutset.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderOutset extends CssProperty {
-
/**
* Create a new CssBorderMaskOutset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderOutset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderOutset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderRepeat.java b/org/w3c/css/properties/css/CssMaskBorderRepeat.java
index 7d54ed25d..0ad32d403 100644
--- a/org/w3c/css/properties/css/CssMaskBorderRepeat.java
+++ b/org/w3c/css/properties/css/CssMaskBorderRepeat.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderRepeat extends CssProperty {
-
/**
* Create a new CssBorderMaskRepeat
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderRepeat = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderRepeat) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderSlice.java b/org/w3c/css/properties/css/CssMaskBorderSlice.java
index 983177b09..3ccf69b96 100644
--- a/org/w3c/css/properties/css/CssMaskBorderSlice.java
+++ b/org/w3c/css/properties/css/CssMaskBorderSlice.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderSlice extends CssProperty {
-
/**
* Create a new CssBorderMaskSlice
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderSlice = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderSlice) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderSource.java b/org/w3c/css/properties/css/CssMaskBorderSource.java
index f556c93e4..33301fe98 100644
--- a/org/w3c/css/properties/css/CssMaskBorderSource.java
+++ b/org/w3c/css/properties/css/CssMaskBorderSource.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderSource extends CssProperty {
-
/**
* Create a new CssBorderMaskSource
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderSource = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderSource) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskBorderWidth.java b/org/w3c/css/properties/css/CssMaskBorderWidth.java
index 7dd402d94..be0981e96 100644
--- a/org/w3c/css/properties/css/CssMaskBorderWidth.java
+++ b/org/w3c/css/properties/css/CssMaskBorderWidth.java
@@ -16,7 +16,6 @@
*/
public class CssMaskBorderWidth extends CssProperty {
-
/**
* Create a new CssBorderMaskWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskBorderWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskBorderWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskClip.java b/org/w3c/css/properties/css/CssMaskClip.java
index 4a050aaa9..fe272235b 100644
--- a/org/w3c/css/properties/css/CssMaskClip.java
+++ b/org/w3c/css/properties/css/CssMaskClip.java
@@ -16,7 +16,6 @@
*/
public class CssMaskClip extends CssProperty {
-
/**
* Create a new CssMaskClip
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskClip = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskClip) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskComposite.java b/org/w3c/css/properties/css/CssMaskComposite.java
index cb398cc02..6b352325a 100644
--- a/org/w3c/css/properties/css/CssMaskComposite.java
+++ b/org/w3c/css/properties/css/CssMaskComposite.java
@@ -16,7 +16,6 @@
*/
public class CssMaskComposite extends CssProperty {
-
/**
* Create a new CssMaskComposite
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskComposite = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskComposite) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskImage.java b/org/w3c/css/properties/css/CssMaskImage.java
index 7034cb83a..2ba8bb65c 100644
--- a/org/w3c/css/properties/css/CssMaskImage.java
+++ b/org/w3c/css/properties/css/CssMaskImage.java
@@ -16,7 +16,6 @@
*/
public class CssMaskImage extends CssProperty {
-
/**
* Create a new CssMaskImage
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskImage = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskImage) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskMode.java b/org/w3c/css/properties/css/CssMaskMode.java
index 5806f4f3a..7342d6cb9 100644
--- a/org/w3c/css/properties/css/CssMaskMode.java
+++ b/org/w3c/css/properties/css/CssMaskMode.java
@@ -16,7 +16,6 @@
*/
public class CssMaskMode extends CssProperty {
-
/**
* Create a new CssMaskMode
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskOrigin.java b/org/w3c/css/properties/css/CssMaskOrigin.java
index 82186c7aa..bbc7d1659 100644
--- a/org/w3c/css/properties/css/CssMaskOrigin.java
+++ b/org/w3c/css/properties/css/CssMaskOrigin.java
@@ -16,7 +16,6 @@
*/
public class CssMaskOrigin extends CssProperty {
-
/**
* Create a new CssMaskOrigin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskOrigin = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskOrigin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskPosition.java b/org/w3c/css/properties/css/CssMaskPosition.java
index 5181904ca..b6ac653a4 100644
--- a/org/w3c/css/properties/css/CssMaskPosition.java
+++ b/org/w3c/css/properties/css/CssMaskPosition.java
@@ -16,7 +16,6 @@
*/
public class CssMaskPosition extends CssProperty {
-
/**
* Create a new CssMaskPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskPosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskRepeat.java b/org/w3c/css/properties/css/CssMaskRepeat.java
index fee9c219b..1207eaa26 100644
--- a/org/w3c/css/properties/css/CssMaskRepeat.java
+++ b/org/w3c/css/properties/css/CssMaskRepeat.java
@@ -16,7 +16,6 @@
*/
public class CssMaskRepeat extends CssProperty {
-
/**
* Create a new CssMaskRepeat
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskRepeat = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskRepeat) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskSize.java b/org/w3c/css/properties/css/CssMaskSize.java
index 68562307f..aac655aa0 100644
--- a/org/w3c/css/properties/css/CssMaskSize.java
+++ b/org/w3c/css/properties/css/CssMaskSize.java
@@ -16,7 +16,6 @@
*/
public class CssMaskSize extends CssProperty {
-
/**
* Create a new CssMaskSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaskType.java b/org/w3c/css/properties/css/CssMaskType.java
index 5b3b5deb6..2a15e93bd 100644
--- a/org/w3c/css/properties/css/CssMaskType.java
+++ b/org/w3c/css/properties/css/CssMaskType.java
@@ -16,7 +16,6 @@
*/
public class CssMaskType extends CssProperty {
-
/**
* Create a new CssMaskType
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaskType = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaskType) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaxBlockSize.java b/org/w3c/css/properties/css/CssMaxBlockSize.java
index efaef1e7e..80bf6bca2 100644
--- a/org/w3c/css/properties/css/CssMaxBlockSize.java
+++ b/org/w3c/css/properties/css/CssMaxBlockSize.java
@@ -16,7 +16,6 @@
*/
public class CssMaxBlockSize extends CssProperty {
-
/**
* Create a new CssMaxBlockSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaxBlockSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxBlockSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaxHeight.java b/org/w3c/css/properties/css/CssMaxHeight.java
index 83cc5a6d3..c8558ebfe 100644
--- a/org/w3c/css/properties/css/CssMaxHeight.java
+++ b/org/w3c/css/properties/css/CssMaxHeight.java
@@ -16,7 +16,6 @@
*/
public class CssMaxHeight extends CssProperty {
-
/**
* Create a new CssMaxHeight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaxInlineSize.java b/org/w3c/css/properties/css/CssMaxInlineSize.java
index 57f37f3a0..483ef0cd7 100644
--- a/org/w3c/css/properties/css/CssMaxInlineSize.java
+++ b/org/w3c/css/properties/css/CssMaxInlineSize.java
@@ -16,7 +16,6 @@
*/
public class CssMaxInlineSize extends CssProperty {
-
/**
* Create a new CssMaxInlineSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMaxInlineSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxInlineSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMaxWidth.java b/org/w3c/css/properties/css/CssMaxWidth.java
index 9f9ac4737..dde9d04c2 100644
--- a/org/w3c/css/properties/css/CssMaxWidth.java
+++ b/org/w3c/css/properties/css/CssMaxWidth.java
@@ -16,7 +16,6 @@
*/
public class CssMaxWidth extends CssProperty {
-
/**
* Create a new CssMaxWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMinBlockSize.java b/org/w3c/css/properties/css/CssMinBlockSize.java
index 9cc09e02a..66db541bc 100644
--- a/org/w3c/css/properties/css/CssMinBlockSize.java
+++ b/org/w3c/css/properties/css/CssMinBlockSize.java
@@ -16,7 +16,6 @@
*/
public class CssMinBlockSize extends CssProperty {
-
/**
* Create a new CssMinBlockSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMinBlockSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinBlockSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMinHeight.java b/org/w3c/css/properties/css/CssMinHeight.java
index 9a667ad85..c51d1a62f 100644
--- a/org/w3c/css/properties/css/CssMinHeight.java
+++ b/org/w3c/css/properties/css/CssMinHeight.java
@@ -16,7 +16,6 @@
*/
public class CssMinHeight extends CssProperty {
-
/**
* Create a new CssMinHeight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMinInlineSize.java b/org/w3c/css/properties/css/CssMinInlineSize.java
index 2a1055010..9c368da47 100644
--- a/org/w3c/css/properties/css/CssMinInlineSize.java
+++ b/org/w3c/css/properties/css/CssMinInlineSize.java
@@ -16,7 +16,6 @@
*/
public class CssMinInlineSize extends CssProperty {
-
/**
* Create a new CssInlineSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMinInlineSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinInlineSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMinWidth.java b/org/w3c/css/properties/css/CssMinWidth.java
index f9bc1aecc..3106d69d9 100644
--- a/org/w3c/css/properties/css/CssMinWidth.java
+++ b/org/w3c/css/properties/css/CssMinWidth.java
@@ -16,7 +16,6 @@
*/
public class CssMinWidth extends CssProperty {
-
/**
* Create a new CssMinWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssMixBlendMode.java b/org/w3c/css/properties/css/CssMixBlendMode.java
index ea9e54b3a..89e434e8b 100644
--- a/org/w3c/css/properties/css/CssMixBlendMode.java
+++ b/org/w3c/css/properties/css/CssMixBlendMode.java
@@ -16,7 +16,6 @@
*/
public class CssMixBlendMode extends CssProperty {
-
/**
* Create a new CssMixBlendMode
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssMixBlendMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMixBlendMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssNavDown.java b/org/w3c/css/properties/css/CssNavDown.java
index 0e5f4849c..44f5040b8 100644
--- a/org/w3c/css/properties/css/CssNavDown.java
+++ b/org/w3c/css/properties/css/CssNavDown.java
@@ -16,7 +16,6 @@
*/
public class CssNavDown extends CssProperty {
-
/**
* Create a new CssNavDown
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssNavDown = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssNavDown) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssNavLeft.java b/org/w3c/css/properties/css/CssNavLeft.java
index c6ce96448..2287454ec 100644
--- a/org/w3c/css/properties/css/CssNavLeft.java
+++ b/org/w3c/css/properties/css/CssNavLeft.java
@@ -16,7 +16,6 @@
*/
public class CssNavLeft extends CssProperty {
-
/**
* Create a new CssNavLeft
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssNavLeft = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssNavLeft) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssNavRight.java b/org/w3c/css/properties/css/CssNavRight.java
index b38a1190a..02f76404a 100644
--- a/org/w3c/css/properties/css/CssNavRight.java
+++ b/org/w3c/css/properties/css/CssNavRight.java
@@ -16,7 +16,6 @@
*/
public class CssNavRight extends CssProperty {
-
/**
* Create a new CssNavRight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssNavRight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssNavRight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssNavUp.java b/org/w3c/css/properties/css/CssNavUp.java
index 4bc7c7137..788c12184 100644
--- a/org/w3c/css/properties/css/CssNavUp.java
+++ b/org/w3c/css/properties/css/CssNavUp.java
@@ -16,7 +16,6 @@
*/
public class CssNavUp extends CssProperty {
-
/**
* Create a new CssNavUp
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssNavUp = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssNavUp) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssObjectFit.java b/org/w3c/css/properties/css/CssObjectFit.java
index 97ee6097a..f904f79f9 100644
--- a/org/w3c/css/properties/css/CssObjectFit.java
+++ b/org/w3c/css/properties/css/CssObjectFit.java
@@ -16,7 +16,6 @@
*/
public class CssObjectFit extends CssProperty {
-
/**
* Create a new CssObjectFit
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssObjectFit = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssObjectFit) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssObjectPosition.java b/org/w3c/css/properties/css/CssObjectPosition.java
index 53e088797..758eec122 100644
--- a/org/w3c/css/properties/css/CssObjectPosition.java
+++ b/org/w3c/css/properties/css/CssObjectPosition.java
@@ -16,7 +16,6 @@
*/
public class CssObjectPosition extends CssProperty {
-
/**
* Create a new CssObjectPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssObjectPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssObjectPosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOpacity.java b/org/w3c/css/properties/css/CssOpacity.java
index 4b0212464..04eee5c08 100644
--- a/org/w3c/css/properties/css/CssOpacity.java
+++ b/org/w3c/css/properties/css/CssOpacity.java
@@ -19,7 +19,6 @@
public class CssOpacity extends CssProperty {
-
/**
* Create a new CssOpacity
*/
@@ -99,13 +98,6 @@ public boolean isSoftlyInherited() {
return inherit == value;
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value It is used by all macro for
* the function print
diff --git a/org/w3c/css/properties/css/CssOrder.java b/org/w3c/css/properties/css/CssOrder.java
index 5d12c6d7b..5f2067ac5 100644
--- a/org/w3c/css/properties/css/CssOrder.java
+++ b/org/w3c/css/properties/css/CssOrder.java
@@ -16,7 +16,6 @@
*/
public class CssOrder extends CssProperty {
-
/**
* Create a new CssOrder
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOrder = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOrder) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOrphans.java b/org/w3c/css/properties/css/CssOrphans.java
index 9be73d502..3f30884c8 100644
--- a/org/w3c/css/properties/css/CssOrphans.java
+++ b/org/w3c/css/properties/css/CssOrphans.java
@@ -19,7 +19,6 @@ public class CssOrphans extends CssProperty {
public static final String propertyName = "orphans";
-
/**
* Create a new CssOrphans
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssOutline.java b/org/w3c/css/properties/css/CssOutline.java
index 18037e24d..30bd64fd3 100644
--- a/org/w3c/css/properties/css/CssOutline.java
+++ b/org/w3c/css/properties/css/CssOutline.java
@@ -16,7 +16,6 @@
*/
public class CssOutline extends CssProperty {
-
public CssOutlineColor _color;
public CssOutlineStyle _style;
public CssOutlineWidth _width;
@@ -56,7 +55,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -72,13 +70,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -95,7 +86,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
_style.addToStyle(ac, style);
}
-
/**
* Compares two properties for equality.
*
@@ -106,7 +96,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOutline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOutlineColor.java b/org/w3c/css/properties/css/CssOutlineColor.java
index f350542bf..911dfa372 100644
--- a/org/w3c/css/properties/css/CssOutlineColor.java
+++ b/org/w3c/css/properties/css/CssOutlineColor.java
@@ -16,7 +16,6 @@
*/
public class CssOutlineColor extends CssProperty {
-
/**
* Create a new CssOutlineColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOutlineColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOutlineColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOutlineOffset.java b/org/w3c/css/properties/css/CssOutlineOffset.java
index a433151ef..8be834e89 100644
--- a/org/w3c/css/properties/css/CssOutlineOffset.java
+++ b/org/w3c/css/properties/css/CssOutlineOffset.java
@@ -16,7 +16,6 @@
*/
public class CssOutlineOffset extends CssProperty {
-
/**
* Create a new CssOutlineOffset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOutlineOffset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOutlineOffset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOutlineStyle.java b/org/w3c/css/properties/css/CssOutlineStyle.java
index 9f69ddb89..662b17d32 100644
--- a/org/w3c/css/properties/css/CssOutlineStyle.java
+++ b/org/w3c/css/properties/css/CssOutlineStyle.java
@@ -16,7 +16,6 @@
*/
public class CssOutlineStyle extends CssProperty {
-
/**
* Create a new CssOutlineStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOutlineStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOutlineStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOutlineWidth.java b/org/w3c/css/properties/css/CssOutlineWidth.java
index 894d0b032..71ee61113 100644
--- a/org/w3c/css/properties/css/CssOutlineWidth.java
+++ b/org/w3c/css/properties/css/CssOutlineWidth.java
@@ -16,7 +16,6 @@
*/
public class CssOutlineWidth extends CssProperty {
-
/**
* Create a new CssOutlineWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOutlineWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOutlineWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflow.java b/org/w3c/css/properties/css/CssOverflow.java
index 83af42d0d..589c9ff47 100644
--- a/org/w3c/css/properties/css/CssOverflow.java
+++ b/org/w3c/css/properties/css/CssOverflow.java
@@ -16,7 +16,6 @@
*/
public class CssOverflow extends CssProperty {
-
/**
* Create a new CssOverflow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowAnchor.java b/org/w3c/css/properties/css/CssOverflowAnchor.java
index cd7aa4ee3..28270c548 100644
--- a/org/w3c/css/properties/css/CssOverflowAnchor.java
+++ b/org/w3c/css/properties/css/CssOverflowAnchor.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowAnchor extends CssProperty {
-
/**
* Create a new CssOverflowAnchor
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowAnchor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowBlock.java b/org/w3c/css/properties/css/CssOverflowBlock.java
index 3929ed8d8..fdc588d9e 100644
--- a/org/w3c/css/properties/css/CssOverflowBlock.java
+++ b/org/w3c/css/properties/css/CssOverflowBlock.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowBlock extends CssProperty {
-
/**
* Create a new CssOverflowBlock
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowBlock) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowClipMargin.java b/org/w3c/css/properties/css/CssOverflowClipMargin.java
index d0a2dc49d..26a16345e 100644
--- a/org/w3c/css/properties/css/CssOverflowClipMargin.java
+++ b/org/w3c/css/properties/css/CssOverflowClipMargin.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowClipMargin extends CssProperty {
-
/**
* Create a new CssOverflowClipMargin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowClipMargin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowInline.java b/org/w3c/css/properties/css/CssOverflowInline.java
index 360aa9fe4..b9a316a73 100644
--- a/org/w3c/css/properties/css/CssOverflowInline.java
+++ b/org/w3c/css/properties/css/CssOverflowInline.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowInline extends CssProperty {
-
/**
* Create a new CssOverflowInline
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowInline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowStyle.java b/org/w3c/css/properties/css/CssOverflowStyle.java
index 399e8438b..e0344ea43 100644
--- a/org/w3c/css/properties/css/CssOverflowStyle.java
+++ b/org/w3c/css/properties/css/CssOverflowStyle.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowStyle extends CssProperty {
-
/**
* Create a new CssOverflowStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOverflowStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowWrap.java b/org/w3c/css/properties/css/CssOverflowWrap.java
index 8c7c72068..ddbbe93ce 100644
--- a/org/w3c/css/properties/css/CssOverflowWrap.java
+++ b/org/w3c/css/properties/css/CssOverflowWrap.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowWrap extends CssProperty {
-
/**
* Create a new CssOverflowWrap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssOverflowWrap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowWrap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowX.java b/org/w3c/css/properties/css/CssOverflowX.java
index c2551247d..37127ccda 100644
--- a/org/w3c/css/properties/css/CssOverflowX.java
+++ b/org/w3c/css/properties/css/CssOverflowX.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowX extends CssProperty {
-
/**
* Create a new CssOverflowX
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowX) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverflowY.java b/org/w3c/css/properties/css/CssOverflowY.java
index 301358357..6b5614337 100644
--- a/org/w3c/css/properties/css/CssOverflowY.java
+++ b/org/w3c/css/properties/css/CssOverflowY.java
@@ -16,7 +16,6 @@
*/
public class CssOverflowY extends CssProperty {
-
/**
* Create a new CssOverflowY
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverflowY) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverscrollBehavior.java b/org/w3c/css/properties/css/CssOverscrollBehavior.java
index 59d21c74b..369ad0c42 100644
--- a/org/w3c/css/properties/css/CssOverscrollBehavior.java
+++ b/org/w3c/css/properties/css/CssOverscrollBehavior.java
@@ -16,7 +16,6 @@
*/
public class CssOverscrollBehavior extends CssProperty {
-
/**
* Create a new CssOverscrollBehavior
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverscrollBehavior) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverscrollBehaviorBlock.java b/org/w3c/css/properties/css/CssOverscrollBehaviorBlock.java
index 6d86faf23..c6be95ae6 100644
--- a/org/w3c/css/properties/css/CssOverscrollBehaviorBlock.java
+++ b/org/w3c/css/properties/css/CssOverscrollBehaviorBlock.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverscrollBehaviorBlock) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverscrollBehaviorInline.java b/org/w3c/css/properties/css/CssOverscrollBehaviorInline.java
index 17fbddf6c..d490f0b73 100644
--- a/org/w3c/css/properties/css/CssOverscrollBehaviorInline.java
+++ b/org/w3c/css/properties/css/CssOverscrollBehaviorInline.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverscrollBehaviorInline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverscrollBehaviorX.java b/org/w3c/css/properties/css/CssOverscrollBehaviorX.java
index 2c0a9fb92..ade19d262 100644
--- a/org/w3c/css/properties/css/CssOverscrollBehaviorX.java
+++ b/org/w3c/css/properties/css/CssOverscrollBehaviorX.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverscrollBehaviorX) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssOverscrollBehaviorY.java b/org/w3c/css/properties/css/CssOverscrollBehaviorY.java
index 132d55a81..66147f15c 100644
--- a/org/w3c/css/properties/css/CssOverscrollBehaviorY.java
+++ b/org/w3c/css/properties/css/CssOverscrollBehaviorY.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverscrollBehaviorY) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPadding.java b/org/w3c/css/properties/css/CssPadding.java
index b5beae117..0502ee934 100644
--- a/org/w3c/css/properties/css/CssPadding.java
+++ b/org/w3c/css/properties/css/CssPadding.java
@@ -16,8 +16,6 @@
*/
public class CssPadding extends CssProperty {
-
-
public CssPaddingRight paddingRight;
public CssPaddingTop paddingTop;
public CssPaddingBottom paddingBottom;
@@ -31,7 +29,6 @@ public class CssPadding extends CssProperty {
public CssPadding() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -59,7 +56,6 @@ public CssPadding(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -67,7 +63,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -75,13 +70,6 @@ public final String getPropertyName() {
return "padding";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssPaddingBlock.java b/org/w3c/css/properties/css/CssPaddingBlock.java
index e4307de8b..2e90d0baf 100644
--- a/org/w3c/css/properties/css/CssPaddingBlock.java
+++ b/org/w3c/css/properties/css/CssPaddingBlock.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingBlock extends CssProperty {
-
/**
* Create a new CssPaddingBlock
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssPaddingBlockEnd.java b/org/w3c/css/properties/css/CssPaddingBlockEnd.java
index db3efaa61..9def49eff 100644
--- a/org/w3c/css/properties/css/CssPaddingBlockEnd.java
+++ b/org/w3c/css/properties/css/CssPaddingBlockEnd.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingBlockEnd extends CssProperty {
-
/**
* Create a new CssPaddingBlockEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPaddingBlockEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPaddingBlockStart.java b/org/w3c/css/properties/css/CssPaddingBlockStart.java
index 95de82c8d..50369989c 100644
--- a/org/w3c/css/properties/css/CssPaddingBlockStart.java
+++ b/org/w3c/css/properties/css/CssPaddingBlockStart.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingBlockStart extends CssProperty {
-
/**
* Create a new CssPaddingBlockStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPaddingBlockStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPaddingBottom.java b/org/w3c/css/properties/css/CssPaddingBottom.java
index 54e261c6c..ef54f8dd2 100644
--- a/org/w3c/css/properties/css/CssPaddingBottom.java
+++ b/org/w3c/css/properties/css/CssPaddingBottom.java
@@ -16,14 +16,12 @@
*/
public class CssPaddingBottom extends CssProperty {
-
/**
* Create a new CssPaddingBottom
*/
public CssPaddingBottom() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssPaddingBottom(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "padding-bottom";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssPaddingInline.java b/org/w3c/css/properties/css/CssPaddingInline.java
index 2dd9dc076..18d698b84 100644
--- a/org/w3c/css/properties/css/CssPaddingInline.java
+++ b/org/w3c/css/properties/css/CssPaddingInline.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingInline extends CssProperty {
-
/**
* Create a new CssPaddingInline
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssPaddingInlineEnd.java b/org/w3c/css/properties/css/CssPaddingInlineEnd.java
index 2a5e5d9c5..55fd6e4fc 100644
--- a/org/w3c/css/properties/css/CssPaddingInlineEnd.java
+++ b/org/w3c/css/properties/css/CssPaddingInlineEnd.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingInlineEnd extends CssProperty {
-
/**
* Create a new CssPaddingInlineEnd
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPaddingInlineEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPaddingInlineStart.java b/org/w3c/css/properties/css/CssPaddingInlineStart.java
index 86585a56a..2eb45a1aa 100644
--- a/org/w3c/css/properties/css/CssPaddingInlineStart.java
+++ b/org/w3c/css/properties/css/CssPaddingInlineStart.java
@@ -16,7 +16,6 @@
*/
public class CssPaddingInlineStart extends CssProperty {
-
/**
* Create a new CssPaddingInlineStart
*/
@@ -48,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +62,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -92,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPaddingInlineStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPaddingLeft.java b/org/w3c/css/properties/css/CssPaddingLeft.java
index e0824aa57..b98b1826c 100644
--- a/org/w3c/css/properties/css/CssPaddingLeft.java
+++ b/org/w3c/css/properties/css/CssPaddingLeft.java
@@ -16,14 +16,12 @@
*/
public class CssPaddingLeft extends CssProperty {
-
/**
* Create a new CssPaddingLeft
*/
public CssPaddingLeft() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssPaddingLeft(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "padding-left";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssPaddingRight.java b/org/w3c/css/properties/css/CssPaddingRight.java
index 873a06480..acba989c6 100644
--- a/org/w3c/css/properties/css/CssPaddingRight.java
+++ b/org/w3c/css/properties/css/CssPaddingRight.java
@@ -16,14 +16,12 @@
*/
public class CssPaddingRight extends CssProperty {
-
/**
* Create a new CssPaddingRight
*/
public CssPaddingRight() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssPaddingRight(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "padding-right";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssPaddingTop.java b/org/w3c/css/properties/css/CssPaddingTop.java
index fec10ad02..6982918c7 100644
--- a/org/w3c/css/properties/css/CssPaddingTop.java
+++ b/org/w3c/css/properties/css/CssPaddingTop.java
@@ -16,14 +16,12 @@
*/
public class CssPaddingTop extends CssProperty {
-
/**
* Create a new CssPaddingTop
*/
public CssPaddingTop() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssPaddingTop(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,14 +63,6 @@ public final String getPropertyName() {
return "padding-top";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle
*
diff --git a/org/w3c/css/properties/css/CssPageBreakAfter.java b/org/w3c/css/properties/css/CssPageBreakAfter.java
index e3b71b0f4..03dd8ec4d 100644
--- a/org/w3c/css/properties/css/CssPageBreakAfter.java
+++ b/org/w3c/css/properties/css/CssPageBreakAfter.java
@@ -19,7 +19,6 @@ public class CssPageBreakAfter extends CssProperty {
public static final String propertyName = "page-break-after";
-
/**
* Create a new CssPageBreakAfter
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssPageBreakBefore.java b/org/w3c/css/properties/css/CssPageBreakBefore.java
index bf99f96d6..baa6ee5b9 100644
--- a/org/w3c/css/properties/css/CssPageBreakBefore.java
+++ b/org/w3c/css/properties/css/CssPageBreakBefore.java
@@ -19,7 +19,6 @@ public class CssPageBreakBefore extends CssProperty {
public static final String propertyName = "page-break-before";
-
/**
* Create a new CssPageBreakBefore
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssPageBreakInside.java b/org/w3c/css/properties/css/CssPageBreakInside.java
index 27c0ec58e..1d6940964 100644
--- a/org/w3c/css/properties/css/CssPageBreakInside.java
+++ b/org/w3c/css/properties/css/CssPageBreakInside.java
@@ -19,7 +19,6 @@ public class CssPageBreakInside extends CssProperty {
public static final String propertyName = "page-break-inside";
-
/**
* Create a new CssPageBreakInside
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssPause.java b/org/w3c/css/properties/css/CssPause.java
index 5b3d3162c..e91844bcc 100644
--- a/org/w3c/css/properties/css/CssPause.java
+++ b/org/w3c/css/properties/css/CssPause.java
@@ -17,7 +17,6 @@
*/
public class CssPause extends CssProperty {
-
public CssPauseAfter cssPauseAfter;
public CssPauseBefore cssPauseBefore;
@@ -53,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPause) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPauseAfter.java b/org/w3c/css/properties/css/CssPauseAfter.java
index f4acf6735..799e8cc17 100644
--- a/org/w3c/css/properties/css/CssPauseAfter.java
+++ b/org/w3c/css/properties/css/CssPauseAfter.java
@@ -16,7 +16,6 @@
*/
public class CssPauseAfter extends CssProperty {
-
/**
* Create a new CssPauseAfter
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPauseAfter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPauseBefore.java b/org/w3c/css/properties/css/CssPauseBefore.java
index 7771e7df8..f4edda7fc 100644
--- a/org/w3c/css/properties/css/CssPauseBefore.java
+++ b/org/w3c/css/properties/css/CssPauseBefore.java
@@ -16,7 +16,6 @@
*/
public class CssPauseBefore extends CssProperty {
-
/**
* Create a new CssPauseBefore
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPauseBefore) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPerspective.java b/org/w3c/css/properties/css/CssPerspective.java
index 869390d75..0f729cdac 100644
--- a/org/w3c/css/properties/css/CssPerspective.java
+++ b/org/w3c/css/properties/css/CssPerspective.java
@@ -16,7 +16,6 @@
*/
public class CssPerspective extends CssProperty {
-
/**
* Create a new CssPerspective
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPerspective = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPerspective) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPerspectiveOrigin.java b/org/w3c/css/properties/css/CssPerspectiveOrigin.java
index c75fe1535..a3557309b 100644
--- a/org/w3c/css/properties/css/CssPerspectiveOrigin.java
+++ b/org/w3c/css/properties/css/CssPerspectiveOrigin.java
@@ -16,7 +16,6 @@
*/
public class CssPerspectiveOrigin extends CssProperty {
-
/**
* Create a new CssPerspectiveOrigin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPerspectiveOrigin = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPerspectiveOrigin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPitch.java b/org/w3c/css/properties/css/CssPitch.java
index 1e4e375a6..3b400bd53 100644
--- a/org/w3c/css/properties/css/CssPitch.java
+++ b/org/w3c/css/properties/css/CssPitch.java
@@ -16,7 +16,6 @@
*/
public class CssPitch extends CssProperty {
-
/**
* Create a new CssPitch
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPitch) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPitchRange.java b/org/w3c/css/properties/css/CssPitchRange.java
index f20f42b95..85aee88b0 100644
--- a/org/w3c/css/properties/css/CssPitchRange.java
+++ b/org/w3c/css/properties/css/CssPitchRange.java
@@ -17,7 +17,6 @@
*/
public class CssPitchRange extends CssProperty {
-
/**
* Create a new CssPitchRange
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPitchRange) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPlaceContent.java b/org/w3c/css/properties/css/CssPlaceContent.java
index 3b3b346da..846298a0f 100644
--- a/org/w3c/css/properties/css/CssPlaceContent.java
+++ b/org/w3c/css/properties/css/CssPlaceContent.java
@@ -16,7 +16,6 @@
*/
public class CssPlaceContent extends CssProperty {
-
/**
* Create a new CssPlaceContent
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPlaceContent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPlaceContent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPlaceItems.java b/org/w3c/css/properties/css/CssPlaceItems.java
index e7ff735f1..f572ef48e 100644
--- a/org/w3c/css/properties/css/CssPlaceItems.java
+++ b/org/w3c/css/properties/css/CssPlaceItems.java
@@ -16,7 +16,6 @@
*/
public class CssPlaceItems extends CssProperty {
-
/**
* Create a new CssPlaceItems
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPlaceItems = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPlaceItems) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPlaceSelf.java b/org/w3c/css/properties/css/CssPlaceSelf.java
index 5465988a1..c7b9eacec 100644
--- a/org/w3c/css/properties/css/CssPlaceSelf.java
+++ b/org/w3c/css/properties/css/CssPlaceSelf.java
@@ -16,7 +16,6 @@
*/
public class CssPlaceSelf extends CssProperty {
-
/**
* Create a new CssPlaceSelf
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPlaceSelf = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPlaceSelf) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPlayDuring.java b/org/w3c/css/properties/css/CssPlayDuring.java
index 32e1b24a4..a56af81a4 100644
--- a/org/w3c/css/properties/css/CssPlayDuring.java
+++ b/org/w3c/css/properties/css/CssPlayDuring.java
@@ -16,7 +16,6 @@
*/
public class CssPlayDuring extends CssProperty {
-
/**
* Create a new CssPlayDuring
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPlayDuring) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPointerEvents.java b/org/w3c/css/properties/css/CssPointerEvents.java
index db5c71194..e79abbd7c 100644
--- a/org/w3c/css/properties/css/CssPointerEvents.java
+++ b/org/w3c/css/properties/css/CssPointerEvents.java
@@ -16,7 +16,6 @@
*/
public class CssPointerEvents extends CssProperty {
-
/**
* Create a new CssPointerEvents
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPointerEvents = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPointerEvents) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPosition.java b/org/w3c/css/properties/css/CssPosition.java
index ad37ea091..b7d8a3f3a 100644
--- a/org/w3c/css/properties/css/CssPosition.java
+++ b/org/w3c/css/properties/css/CssPosition.java
@@ -16,7 +16,6 @@
*/
public class CssPosition extends CssProperty {
-
/**
* Create a new CssPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssPrintColorAdjust.java b/org/w3c/css/properties/css/CssPrintColorAdjust.java
index e992e84b3..16427b4c6 100644
--- a/org/w3c/css/properties/css/CssPrintColorAdjust.java
+++ b/org/w3c/css/properties/css/CssPrintColorAdjust.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssPrintColorAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPrintColorAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssProperty.java b/org/w3c/css/properties/css/CssProperty.java
index f64e8729b..a64da890e 100644
--- a/org/w3c/css/properties/css/CssProperty.java
+++ b/org/w3c/css/properties/css/CssProperty.java
@@ -35,6 +35,13 @@ public abstract class CssProperty
*/
public CssValue value = null;
+ /**
+ * Verbatim string to render instead of value.toString(),
+ * used to keep an unresolved value (e.g. one containing a var()) in the
+ * output. null means "render from value".
+ */
+ public String valueString = null;
+
/**
* True if this property is important. false otherwise.
*/
@@ -167,8 +174,18 @@ public String getPropertyNameEscaped() {
*
* You should write something like this :
* property.getPropertyName() + " : " + property.toString()
+ *
+ * Returns valueString when set (verbatim, e.g. a var()),
+ * otherwise the string of value, or null when
+ * neither is available (the caller decides how to handle that).
*/
- public abstract String toString();
+ public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
+ valueString = (value != null) ? value.toString() : null;
+ return valueString;
+ }
public String getEscaped() {
return Messages.escapeString(toString());
diff --git a/org/w3c/css/properties/css/CssQuotes.java b/org/w3c/css/properties/css/CssQuotes.java
index 53a9f7a1e..a4374a0b3 100644
--- a/org/w3c/css/properties/css/CssQuotes.java
+++ b/org/w3c/css/properties/css/CssQuotes.java
@@ -16,7 +16,6 @@
*/
public class CssQuotes extends CssProperty {
-
/**
* Create a new CssQuotes
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssQuotes) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssResize.java b/org/w3c/css/properties/css/CssResize.java
index 9a59ec18c..149ca8982 100644
--- a/org/w3c/css/properties/css/CssResize.java
+++ b/org/w3c/css/properties/css/CssResize.java
@@ -16,7 +16,6 @@
*/
public class CssResize extends CssProperty {
-
/**
* Create a new CssResize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssResize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssResize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRest.java b/org/w3c/css/properties/css/CssRest.java
index 26874d652..862c4d062 100644
--- a/org/w3c/css/properties/css/CssRest.java
+++ b/org/w3c/css/properties/css/CssRest.java
@@ -17,7 +17,6 @@
*/
public class CssRest extends CssProperty {
-
public CssRestAfter cssRestAfter;
public CssRestBefore cssRestBefore;
@@ -53,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRest) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRestAfter.java b/org/w3c/css/properties/css/CssRestAfter.java
index 204679490..e04b8cd7e 100644
--- a/org/w3c/css/properties/css/CssRestAfter.java
+++ b/org/w3c/css/properties/css/CssRestAfter.java
@@ -16,7 +16,6 @@
*/
public class CssRestAfter extends CssProperty {
-
/**
* Create a new CssRestAfter
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRestAfter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRestBefore.java b/org/w3c/css/properties/css/CssRestBefore.java
index 7c0ec051d..9421d49cd 100644
--- a/org/w3c/css/properties/css/CssRestBefore.java
+++ b/org/w3c/css/properties/css/CssRestBefore.java
@@ -16,7 +16,6 @@
*/
public class CssRestBefore extends CssProperty {
-
/**
* Create a new CssRestBefore
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRestBefore) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRichness.java b/org/w3c/css/properties/css/CssRichness.java
index 947e1346c..f6b328d04 100644
--- a/org/w3c/css/properties/css/CssRichness.java
+++ b/org/w3c/css/properties/css/CssRichness.java
@@ -17,7 +17,6 @@
*/
public class CssRichness extends CssProperty {
-
/**
* Create a new CssRichness
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRichness) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRight.java b/org/w3c/css/properties/css/CssRight.java
index 4886a047f..fc1a4ccdb 100644
--- a/org/w3c/css/properties/css/CssRight.java
+++ b/org/w3c/css/properties/css/CssRight.java
@@ -16,7 +16,6 @@
*/
public class CssRight extends CssProperty {
-
/**
* Create a new CssRight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRotate.java b/org/w3c/css/properties/css/CssRotate.java
index 7ee89d9f8..ff2b1266d 100644
--- a/org/w3c/css/properties/css/CssRotate.java
+++ b/org/w3c/css/properties/css/CssRotate.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssRotate = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRotate) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRowGap.java b/org/w3c/css/properties/css/CssRowGap.java
index b9cad9ae2..25e5d110f 100644
--- a/org/w3c/css/properties/css/CssRowGap.java
+++ b/org/w3c/css/properties/css/CssRowGap.java
@@ -20,7 +20,6 @@ public class CssRowGap extends CssProperty {
private static final String propertyName = "row-gap";
-
/**
* Create a new CssRowGap
*/
@@ -98,13 +97,6 @@ public boolean isSoftlyInherited() {
return (inherit == value);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css/CssRubyAlign.java b/org/w3c/css/properties/css/CssRubyAlign.java
index dadeeb5df..8857de927 100644
--- a/org/w3c/css/properties/css/CssRubyAlign.java
+++ b/org/w3c/css/properties/css/CssRubyAlign.java
@@ -16,7 +16,6 @@
*/
public class CssRubyAlign extends CssProperty {
-
/**
* Create a new CssRubyAlign
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssRubyAlign = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRubyAlign) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRubyMerge.java b/org/w3c/css/properties/css/CssRubyMerge.java
index acb3ef12e..1d98d3d2d 100644
--- a/org/w3c/css/properties/css/CssRubyMerge.java
+++ b/org/w3c/css/properties/css/CssRubyMerge.java
@@ -16,7 +16,6 @@
*/
public class CssRubyMerge extends CssProperty {
-
/**
* Create a new CssRubyMerge
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssRubyMerge = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRubyMerge) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRubyOverhang.java b/org/w3c/css/properties/css/CssRubyOverhang.java
index 5112325e5..298ac8376 100644
--- a/org/w3c/css/properties/css/CssRubyOverhang.java
+++ b/org/w3c/css/properties/css/CssRubyOverhang.java
@@ -16,7 +16,6 @@
*/
public class CssRubyOverhang extends CssProperty {
-
/**
* Create a new CssRubyOverhang
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssRubyOverhang = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRubyOverhang) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssRubyPosition.java b/org/w3c/css/properties/css/CssRubyPosition.java
index bb09a7002..f45e5d74b 100644
--- a/org/w3c/css/properties/css/CssRubyPosition.java
+++ b/org/w3c/css/properties/css/CssRubyPosition.java
@@ -16,7 +16,6 @@
*/
public class CssRubyPosition extends CssProperty {
-
/**
* Create a new CssRubyPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssRubyPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRubyPosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScale.java b/org/w3c/css/properties/css/CssScale.java
index cdf857993..9eaf25985 100644
--- a/org/w3c/css/properties/css/CssScale.java
+++ b/org/w3c/css/properties/css/CssScale.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScale = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScale) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollBehavior.java b/org/w3c/css/properties/css/CssScrollBehavior.java
index ed62e6a84..95d1acf27 100644
--- a/org/w3c/css/properties/css/CssScrollBehavior.java
+++ b/org/w3c/css/properties/css/CssScrollBehavior.java
@@ -13,7 +13,6 @@
*/
public class CssScrollBehavior extends CssProperty {
-
/**
* Create a new CssScrollBehavior
*/
@@ -46,7 +45,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -62,13 +60,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -82,7 +73,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollBehavior = this;
}
-
/**
* Compares two properties for equality.
*
@@ -93,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollBehavior) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMargin.java b/org/w3c/css/properties/css/CssScrollMargin.java
index 3b1134e7f..ba66ef6db 100644
--- a/org/w3c/css/properties/css/CssScrollMargin.java
+++ b/org/w3c/css/properties/css/CssScrollMargin.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMargin extends CssProperty {
-
/**
* Create a new CssScrollMargin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMargin = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMargin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginBlock.java b/org/w3c/css/properties/css/CssScrollMarginBlock.java
index 116d4bdd1..3b3a6d48d 100644
--- a/org/w3c/css/properties/css/CssScrollMarginBlock.java
+++ b/org/w3c/css/properties/css/CssScrollMarginBlock.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginBlock extends CssProperty {
-
/**
* Create a new CssScrollMarginBlock
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginBlock = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginBlock) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginBlockEnd.java b/org/w3c/css/properties/css/CssScrollMarginBlockEnd.java
index a96ef184f..d44f2b1dd 100644
--- a/org/w3c/css/properties/css/CssScrollMarginBlockEnd.java
+++ b/org/w3c/css/properties/css/CssScrollMarginBlockEnd.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginBlockEnd extends CssProperty {
-
/**
* Create a new CssScrollMarginBlockEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginBlockEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginBlockEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginBlockStart.java b/org/w3c/css/properties/css/CssScrollMarginBlockStart.java
index 3c054b58a..ff7e777e5 100644
--- a/org/w3c/css/properties/css/CssScrollMarginBlockStart.java
+++ b/org/w3c/css/properties/css/CssScrollMarginBlockStart.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginBlockStart extends CssProperty {
-
/**
* Create a new CssScrollMarginBlockStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginBlockStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginBlockStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginBottom.java b/org/w3c/css/properties/css/CssScrollMarginBottom.java
index 08a7ecdce..505cf6c0d 100644
--- a/org/w3c/css/properties/css/CssScrollMarginBottom.java
+++ b/org/w3c/css/properties/css/CssScrollMarginBottom.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginBottom extends CssProperty {
-
/**
* Create a new CssScrollMarginBottom
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginBottom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginBottom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginInline.java b/org/w3c/css/properties/css/CssScrollMarginInline.java
index 0f8edf410..662bf8b71 100644
--- a/org/w3c/css/properties/css/CssScrollMarginInline.java
+++ b/org/w3c/css/properties/css/CssScrollMarginInline.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginInline extends CssProperty {
-
/**
* Create a new CssScrollMarginInline
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginInline = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginInline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginInlineEnd.java b/org/w3c/css/properties/css/CssScrollMarginInlineEnd.java
index 879c5df50..a2aebb699 100644
--- a/org/w3c/css/properties/css/CssScrollMarginInlineEnd.java
+++ b/org/w3c/css/properties/css/CssScrollMarginInlineEnd.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginInlineEnd extends CssProperty {
-
/**
* Create a new CssScrollMarginInlineEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginInlineEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginInlineEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginInlineStart.java b/org/w3c/css/properties/css/CssScrollMarginInlineStart.java
index aa45a45da..f7bc29cc9 100644
--- a/org/w3c/css/properties/css/CssScrollMarginInlineStart.java
+++ b/org/w3c/css/properties/css/CssScrollMarginInlineStart.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginInlineStart extends CssProperty {
-
/**
* Create a new CssScrollMarginInlineStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginInlineStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginInlineStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginLeft.java b/org/w3c/css/properties/css/CssScrollMarginLeft.java
index 69291bdbf..aa6d024c9 100644
--- a/org/w3c/css/properties/css/CssScrollMarginLeft.java
+++ b/org/w3c/css/properties/css/CssScrollMarginLeft.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginLeft extends CssProperty {
-
/**
* Create a new CssScrollMarginLeft
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginLeft = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginLeft) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginRight.java b/org/w3c/css/properties/css/CssScrollMarginRight.java
index 026c1f735..8653c8f25 100644
--- a/org/w3c/css/properties/css/CssScrollMarginRight.java
+++ b/org/w3c/css/properties/css/CssScrollMarginRight.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginRight extends CssProperty {
-
/**
* Create a new CssScrollMarginRight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginRight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginRight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollMarginTop.java b/org/w3c/css/properties/css/CssScrollMarginTop.java
index 92c08c706..c6c4fa1c7 100644
--- a/org/w3c/css/properties/css/CssScrollMarginTop.java
+++ b/org/w3c/css/properties/css/CssScrollMarginTop.java
@@ -16,7 +16,6 @@
*/
public class CssScrollMarginTop extends CssProperty {
-
/**
* Create a new CssScrollMarginTop
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollMarginTop = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollMarginTop) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPadding.java b/org/w3c/css/properties/css/CssScrollPadding.java
index ecffe9534..7a3b14afa 100644
--- a/org/w3c/css/properties/css/CssScrollPadding.java
+++ b/org/w3c/css/properties/css/CssScrollPadding.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPadding extends CssProperty {
-
/**
* Create a new CssScrollPadding
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPadding = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPadding) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingBlock.java b/org/w3c/css/properties/css/CssScrollPaddingBlock.java
index 40257cbe5..f079479eb 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingBlock.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingBlock.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingBlock extends CssProperty {
-
/**
* Create a new CssScrollPaddingBlock
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingBlock = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingBlock) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingBlockEnd.java b/org/w3c/css/properties/css/CssScrollPaddingBlockEnd.java
index 9b1708137..30b146089 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingBlockEnd.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingBlockEnd.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingBlockEnd extends CssProperty {
-
/**
* Create a new CssScrollPaddingBlockEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingBlockEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingBlockEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingBlockStart.java b/org/w3c/css/properties/css/CssScrollPaddingBlockStart.java
index fa728363d..b3c5d7f96 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingBlockStart.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingBlockStart.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingBlockStart extends CssProperty {
-
/**
* Create a new CssScrollPaddingBlockStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingBlockStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingBlockStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingBottom.java b/org/w3c/css/properties/css/CssScrollPaddingBottom.java
index e77b479f8..08ecf2fe3 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingBottom.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingBottom.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingBottom extends CssProperty {
-
/**
* Create a new CssScrollPaddingBottom
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingBottom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingBottom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingInline.java b/org/w3c/css/properties/css/CssScrollPaddingInline.java
index 00196b588..1afa51be0 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingInline.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingInline.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingInline extends CssProperty {
-
/**
* Create a new CssScrollPaddingInline
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingInline = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingInline) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingInlineEnd.java b/org/w3c/css/properties/css/CssScrollPaddingInlineEnd.java
index bdc21ee1c..da1173078 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingInlineEnd.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingInlineEnd.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingInlineEnd extends CssProperty {
-
/**
* Create a new CssScrollPaddingInlineEnd
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingInlineEnd = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingInlineEnd) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingInlineStart.java b/org/w3c/css/properties/css/CssScrollPaddingInlineStart.java
index bd5470ce7..8e73133c4 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingInlineStart.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingInlineStart.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingInlineStart extends CssProperty {
-
/**
* Create a new CssScrollPaddingInlineStart
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingInlineStart = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingInlineStart) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingLeft.java b/org/w3c/css/properties/css/CssScrollPaddingLeft.java
index 6b07a37ba..a226b6a46 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingLeft.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingLeft.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingLeft extends CssProperty {
-
/**
* Create a new CssScrollPaddingLeft
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingLeft = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingLeft) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingRight.java b/org/w3c/css/properties/css/CssScrollPaddingRight.java
index eb110fdb5..ddba0aed8 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingRight.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingRight.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingRight extends CssProperty {
-
/**
* Create a new CssScrollPaddingRight
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingRight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingRight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollPaddingTop.java b/org/w3c/css/properties/css/CssScrollPaddingTop.java
index 6c4c404d5..3fd2e91d9 100644
--- a/org/w3c/css/properties/css/CssScrollPaddingTop.java
+++ b/org/w3c/css/properties/css/CssScrollPaddingTop.java
@@ -16,7 +16,6 @@
*/
public class CssScrollPaddingTop extends CssProperty {
-
/**
* Create a new CssScrollPaddingTop
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollPaddingTop = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollPaddingTop) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollSnapAlign.java b/org/w3c/css/properties/css/CssScrollSnapAlign.java
index 25d6a01e4..ca8d6fb85 100644
--- a/org/w3c/css/properties/css/CssScrollSnapAlign.java
+++ b/org/w3c/css/properties/css/CssScrollSnapAlign.java
@@ -16,7 +16,6 @@
*/
public class CssScrollSnapAlign extends CssProperty {
-
/**
* Create a new CssScrollSnapAlign
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollSnapAlign = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollSnapAlign) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollSnapStop.java b/org/w3c/css/properties/css/CssScrollSnapStop.java
index 634e3a906..98ce5f577 100644
--- a/org/w3c/css/properties/css/CssScrollSnapStop.java
+++ b/org/w3c/css/properties/css/CssScrollSnapStop.java
@@ -16,7 +16,6 @@
*/
public class CssScrollSnapStop extends CssProperty {
-
/**
* Create a new CssScrollSnapStop
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollSnapStop = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollSnapStop) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollSnapType.java b/org/w3c/css/properties/css/CssScrollSnapType.java
index 4941b3089..0200a17b7 100644
--- a/org/w3c/css/properties/css/CssScrollSnapType.java
+++ b/org/w3c/css/properties/css/CssScrollSnapType.java
@@ -16,7 +16,6 @@
*/
public class CssScrollSnapType extends CssProperty {
-
/**
* Create a new CssScrollSnapType
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollSnapType = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollSnapType) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollbarColor.java b/org/w3c/css/properties/css/CssScrollbarColor.java
index d8e6831c1..033bee5c5 100644
--- a/org/w3c/css/properties/css/CssScrollbarColor.java
+++ b/org/w3c/css/properties/css/CssScrollbarColor.java
@@ -16,7 +16,6 @@
*/
public class CssScrollbarColor extends CssProperty {
-
/**
* Create a new CssScrollbarColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollbarColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollbarColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollbarGutter.java b/org/w3c/css/properties/css/CssScrollbarGutter.java
index ae97f9b81..4ed6f7f28 100644
--- a/org/w3c/css/properties/css/CssScrollbarGutter.java
+++ b/org/w3c/css/properties/css/CssScrollbarGutter.java
@@ -16,7 +16,6 @@
*/
public class CssScrollbarGutter extends CssProperty {
-
/**
* Create a new CssScrollbarGutter
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollbarGutter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssScrollbarWidth.java b/org/w3c/css/properties/css/CssScrollbarWidth.java
index 25584c461..2a832a63b 100644
--- a/org/w3c/css/properties/css/CssScrollbarWidth.java
+++ b/org/w3c/css/properties/css/CssScrollbarWidth.java
@@ -16,7 +16,6 @@
*/
public class CssScrollbarWidth extends CssProperty {
-
/**
* Create a new CssScrollbarWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssScrollbarWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssScrollbarWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssShapeRendering.java b/org/w3c/css/properties/css/CssShapeRendering.java
index 7395a798c..3a5080ecb 100644
--- a/org/w3c/css/properties/css/CssShapeRendering.java
+++ b/org/w3c/css/properties/css/CssShapeRendering.java
@@ -16,7 +16,6 @@
*/
public class CssShapeRendering extends CssProperty {
-
/**
* Create a new CssShapeRendering
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssShapeRendering = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssShapeRendering) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSize.java b/org/w3c/css/properties/css/CssSize.java
index 221be5f7c..78f3bf8d8 100644
--- a/org/w3c/css/properties/css/CssSize.java
+++ b/org/w3c/css/properties/css/CssSize.java
@@ -19,7 +19,6 @@ public class CssSize extends CssProperty {
public static final String propertyName = "size";
-
/**
* Create a new CssSize
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssSpeak.java b/org/w3c/css/properties/css/CssSpeak.java
index bf934f283..f8cab25b5 100644
--- a/org/w3c/css/properties/css/CssSpeak.java
+++ b/org/w3c/css/properties/css/CssSpeak.java
@@ -16,7 +16,6 @@
*/
public class CssSpeak extends CssProperty {
-
/**
* Create a new CssSpeak
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeak) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSpeakAs.java b/org/w3c/css/properties/css/CssSpeakAs.java
index bd494bf76..c0eb8c16d 100644
--- a/org/w3c/css/properties/css/CssSpeakAs.java
+++ b/org/w3c/css/properties/css/CssSpeakAs.java
@@ -16,7 +16,6 @@
*/
public class CssSpeakAs extends CssProperty {
-
/**
* Create a new CssSpeakAs
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeakAs) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSpeakHeader.java b/org/w3c/css/properties/css/CssSpeakHeader.java
index 004ce7fb8..856f0855f 100644
--- a/org/w3c/css/properties/css/CssSpeakHeader.java
+++ b/org/w3c/css/properties/css/CssSpeakHeader.java
@@ -17,7 +17,6 @@
*/
public class CssSpeakHeader extends CssProperty {
-
/**
* Create a new CssSpeakHeader
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeakHeader) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSpeakNumeral.java b/org/w3c/css/properties/css/CssSpeakNumeral.java
index 59bcebcfd..59d41c372 100644
--- a/org/w3c/css/properties/css/CssSpeakNumeral.java
+++ b/org/w3c/css/properties/css/CssSpeakNumeral.java
@@ -17,7 +17,6 @@
*/
public class CssSpeakNumeral extends CssProperty {
-
/**
* Create a new CssSpeakNumeral
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeakNumeral) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSpeakPunctuation.java b/org/w3c/css/properties/css/CssSpeakPunctuation.java
index 4bb378ebe..214d0bc6b 100644
--- a/org/w3c/css/properties/css/CssSpeakPunctuation.java
+++ b/org/w3c/css/properties/css/CssSpeakPunctuation.java
@@ -17,7 +17,6 @@
*/
public class CssSpeakPunctuation extends CssProperty {
-
/**
* Create a new CssSpeakPunctuation
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeakPunctuation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssSpeechRate.java b/org/w3c/css/properties/css/CssSpeechRate.java
index 1c22b719a..7c82cc4f5 100644
--- a/org/w3c/css/properties/css/CssSpeechRate.java
+++ b/org/w3c/css/properties/css/CssSpeechRate.java
@@ -16,7 +16,6 @@
*/
public class CssSpeechRate extends CssProperty {
-
/**
* Create a new CssSpeechRate
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeechRate) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStopColor.java b/org/w3c/css/properties/css/CssStopColor.java
index cbe53b750..510169c5a 100644
--- a/org/w3c/css/properties/css/CssStopColor.java
+++ b/org/w3c/css/properties/css/CssStopColor.java
@@ -16,7 +16,6 @@
*/
public class CssStopColor extends CssProperty {
-
/**
* Create a new CssStopColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStopColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStopColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStopOpacity.java b/org/w3c/css/properties/css/CssStopOpacity.java
index 6cae9f136..b01c085a9 100644
--- a/org/w3c/css/properties/css/CssStopOpacity.java
+++ b/org/w3c/css/properties/css/CssStopOpacity.java
@@ -16,7 +16,6 @@
*/
public class CssStopOpacity extends CssProperty {
-
/**
* Create a new CssStopOpacity
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStopOpacity = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStopOpacity) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStress.java b/org/w3c/css/properties/css/CssStress.java
index 1e39b728b..57dcbb937 100644
--- a/org/w3c/css/properties/css/CssStress.java
+++ b/org/w3c/css/properties/css/CssStress.java
@@ -17,7 +17,6 @@
*/
public class CssStress extends CssProperty {
-
/**
* Create a new CssStress
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStress) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStroke.java b/org/w3c/css/properties/css/CssStroke.java
index 37cb527a5..d3e94f3e8 100644
--- a/org/w3c/css/properties/css/CssStroke.java
+++ b/org/w3c/css/properties/css/CssStroke.java
@@ -16,7 +16,6 @@
*/
public class CssStroke extends CssProperty {
-
/**
* Create a new CssStroke
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStroke = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStroke) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeDasharray.java b/org/w3c/css/properties/css/CssStrokeDasharray.java
index 8b7522e25..fc07c092d 100644
--- a/org/w3c/css/properties/css/CssStrokeDasharray.java
+++ b/org/w3c/css/properties/css/CssStrokeDasharray.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeDasharray extends CssProperty {
-
/**
* Create a new CssStrokeDasharray
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeDasharray = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeDasharray) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeDashoffset.java b/org/w3c/css/properties/css/CssStrokeDashoffset.java
index b70c3e81c..8461443b7 100644
--- a/org/w3c/css/properties/css/CssStrokeDashoffset.java
+++ b/org/w3c/css/properties/css/CssStrokeDashoffset.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeDashoffset extends CssProperty {
-
/**
* Create a new CssStrokeDashoffset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeDashoffset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeDashoffset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeLinecap.java b/org/w3c/css/properties/css/CssStrokeLinecap.java
index 1e739e1cc..655605d28 100644
--- a/org/w3c/css/properties/css/CssStrokeLinecap.java
+++ b/org/w3c/css/properties/css/CssStrokeLinecap.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeLinecap extends CssProperty {
-
/**
* Create a new CssStrokeLinecap
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeLinecap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeLinecap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeLinejoin.java b/org/w3c/css/properties/css/CssStrokeLinejoin.java
index 552acc803..5a8b61c2e 100644
--- a/org/w3c/css/properties/css/CssStrokeLinejoin.java
+++ b/org/w3c/css/properties/css/CssStrokeLinejoin.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeLinejoin extends CssProperty {
-
/**
* Create a new CssStrokeLinejoin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeLinejoin = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeLinejoin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeMiterlimit.java b/org/w3c/css/properties/css/CssStrokeMiterlimit.java
index 09ffc7c5e..7b636fe93 100644
--- a/org/w3c/css/properties/css/CssStrokeMiterlimit.java
+++ b/org/w3c/css/properties/css/CssStrokeMiterlimit.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeMiterlimit extends CssProperty {
-
/**
* Create a new CssStrokeMiterlimit
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeMiterlimit = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeMiterlimit) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeOpacity.java b/org/w3c/css/properties/css/CssStrokeOpacity.java
index d681efb65..58b95065a 100644
--- a/org/w3c/css/properties/css/CssStrokeOpacity.java
+++ b/org/w3c/css/properties/css/CssStrokeOpacity.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeOpacity extends CssProperty {
-
/**
* Create a new CssStrokeOpacity
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeOpacity = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeOpacity) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssStrokeWidth.java b/org/w3c/css/properties/css/CssStrokeWidth.java
index 45a06c048..35a53bcb8 100644
--- a/org/w3c/css/properties/css/CssStrokeWidth.java
+++ b/org/w3c/css/properties/css/CssStrokeWidth.java
@@ -16,7 +16,6 @@
*/
public class CssStrokeWidth extends CssProperty {
-
/**
* Create a new CssStrokeWidth
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssStrokeWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssStrokeWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTabSize.java b/org/w3c/css/properties/css/CssTabSize.java
index 536bbab47..8edf2d6af 100644
--- a/org/w3c/css/properties/css/CssTabSize.java
+++ b/org/w3c/css/properties/css/CssTabSize.java
@@ -16,7 +16,6 @@
*/
public class CssTabSize extends CssProperty {
-
/**
* Create a new CssTabSize
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTabSize = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTabSize) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTableLayout.java b/org/w3c/css/properties/css/CssTableLayout.java
index 6fb75faa6..fc9bfc258 100644
--- a/org/w3c/css/properties/css/CssTableLayout.java
+++ b/org/w3c/css/properties/css/CssTableLayout.java
@@ -17,7 +17,6 @@
*/
public class CssTableLayout extends CssProperty {
-
/**
* Create a new CssTableLayout
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTableLayout) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextAlign.java b/org/w3c/css/properties/css/CssTextAlign.java
index 3e478870c..22f873e64 100644
--- a/org/w3c/css/properties/css/CssTextAlign.java
+++ b/org/w3c/css/properties/css/CssTextAlign.java
@@ -16,7 +16,6 @@
*/
public class CssTextAlign extends CssProperty {
-
/**
* Create a new CssTextAlign
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextAlign = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextAlign) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextAlignAll.java b/org/w3c/css/properties/css/CssTextAlignAll.java
index d9fa29b54..a4de7b9cb 100644
--- a/org/w3c/css/properties/css/CssTextAlignAll.java
+++ b/org/w3c/css/properties/css/CssTextAlignAll.java
@@ -16,7 +16,6 @@
*/
public class CssTextAlignAll extends CssProperty {
-
/**
* Create a new CssTextAlignAll
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextAlignAll = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextAlignAll) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextAlignLast.java b/org/w3c/css/properties/css/CssTextAlignLast.java
index aaee70fb4..831391eb4 100644
--- a/org/w3c/css/properties/css/CssTextAlignLast.java
+++ b/org/w3c/css/properties/css/CssTextAlignLast.java
@@ -16,7 +16,6 @@
*/
public class CssTextAlignLast extends CssProperty {
-
/**
* Create a new CssTextAlignLast
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextAlignLast = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextAlignLast) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextAnchor.java b/org/w3c/css/properties/css/CssTextAnchor.java
index d6a3a580d..55e8372f3 100644
--- a/org/w3c/css/properties/css/CssTextAnchor.java
+++ b/org/w3c/css/properties/css/CssTextAnchor.java
@@ -16,7 +16,6 @@
*/
public class CssTextAnchor extends CssProperty {
-
/**
* Create a new CssTextAnchor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextAnchor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextAnchor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextAutospace.java b/org/w3c/css/properties/css/CssTextAutospace.java
index 01f7ab2d9..20abdee1d 100644
--- a/org/w3c/css/properties/css/CssTextAutospace.java
+++ b/org/w3c/css/properties/css/CssTextAutospace.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextAutospace = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextAutospace) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextCombineUpright.java b/org/w3c/css/properties/css/CssTextCombineUpright.java
index 9687f95b5..836722876 100644
--- a/org/w3c/css/properties/css/CssTextCombineUpright.java
+++ b/org/w3c/css/properties/css/CssTextCombineUpright.java
@@ -16,7 +16,6 @@
*/
public class CssTextCombineUpright extends CssProperty {
-
/**
* Create a new CssTextCombineUpright
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextCombineUpright = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextCombineUpright) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecoration.java b/org/w3c/css/properties/css/CssTextDecoration.java
index 2e53fcd6e..8d514996d 100644
--- a/org/w3c/css/properties/css/CssTextDecoration.java
+++ b/org/w3c/css/properties/css/CssTextDecoration.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecoration extends CssProperty {
-
/**
* Create a new CssTextDecoration
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecoration = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecoration) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationColor.java b/org/w3c/css/properties/css/CssTextDecorationColor.java
index 997d384d4..261514efe 100644
--- a/org/w3c/css/properties/css/CssTextDecorationColor.java
+++ b/org/w3c/css/properties/css/CssTextDecorationColor.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationColor extends CssProperty {
-
/**
* Create a new CssTextDecorationColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationLine.java b/org/w3c/css/properties/css/CssTextDecorationLine.java
index 1711bab55..b3aa5a6f0 100644
--- a/org/w3c/css/properties/css/CssTextDecorationLine.java
+++ b/org/w3c/css/properties/css/CssTextDecorationLine.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationLine extends CssProperty {
-
/**
* Create a new CssTextDecorationLine
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationLine = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationLine) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkip.java b/org/w3c/css/properties/css/CssTextDecorationSkip.java
index 1f5a145dd..b07709297 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkip.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkip.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkip extends CssProperty {
-
/**
* Create a new CssTextDecorationSkip
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkip = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkip) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkipBox.java b/org/w3c/css/properties/css/CssTextDecorationSkipBox.java
index 324c9fb17..5c2c02908 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkipBox.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkipBox.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkipBox extends CssProperty {
-
/**
* Create a new CssTextDecorationSkipBox
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkipBox = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkipBox) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkipInk.java b/org/w3c/css/properties/css/CssTextDecorationSkipInk.java
index ce4e1f9f8..60ef2f6a3 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkipInk.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkipInk.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkipInk extends CssProperty {
-
/**
* Create a new CssTextDecorationSkipInk
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkipInk = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkipInk) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkipInset.java b/org/w3c/css/properties/css/CssTextDecorationSkipInset.java
index 484b64a3d..e2a38bb0c 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkipInset.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkipInset.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkipInset extends CssProperty {
-
/**
* Create a new CssTextDecorationSkipInset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkipInset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkipInset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkipSelf.java b/org/w3c/css/properties/css/CssTextDecorationSkipSelf.java
index eed9ecd36..2e471d18f 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkipSelf.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkipSelf.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkipSelf extends CssProperty {
-
/**
* Create a new CssTextDecorationSkipSelf
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkipSelf = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkipSelf) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationSkipSpaces.java b/org/w3c/css/properties/css/CssTextDecorationSkipSpaces.java
index d79bb35e0..3718e01de 100644
--- a/org/w3c/css/properties/css/CssTextDecorationSkipSpaces.java
+++ b/org/w3c/css/properties/css/CssTextDecorationSkipSpaces.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationSkipSpaces extends CssProperty {
-
/**
* Create a new CssTextDecorationSkipSpaces
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationSkipSpaces = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationSkipSpaces) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationStyle.java b/org/w3c/css/properties/css/CssTextDecorationStyle.java
index 07b4ace0e..517901d54 100644
--- a/org/w3c/css/properties/css/CssTextDecorationStyle.java
+++ b/org/w3c/css/properties/css/CssTextDecorationStyle.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationStyle extends CssProperty {
-
/**
* Create a new CssTextDecorationStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextDecorationThickness.java b/org/w3c/css/properties/css/CssTextDecorationThickness.java
index e1632955f..b7c1d60bf 100644
--- a/org/w3c/css/properties/css/CssTextDecorationThickness.java
+++ b/org/w3c/css/properties/css/CssTextDecorationThickness.java
@@ -16,7 +16,6 @@
*/
public class CssTextDecorationThickness extends CssProperty {
-
/**
* Create a new CssTextDecorationThickness
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextDecorationThickness = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextDecorationThickness) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextEmphasis.java b/org/w3c/css/properties/css/CssTextEmphasis.java
index 92dc63892..5d56c47e4 100644
--- a/org/w3c/css/properties/css/CssTextEmphasis.java
+++ b/org/w3c/css/properties/css/CssTextEmphasis.java
@@ -16,7 +16,6 @@
*/
public class CssTextEmphasis extends CssProperty {
-
/**
* Create a new CssTextEmphasis
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextEmphasis = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextEmphasis) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextEmphasisColor.java b/org/w3c/css/properties/css/CssTextEmphasisColor.java
index bb971bc93..078927df8 100644
--- a/org/w3c/css/properties/css/CssTextEmphasisColor.java
+++ b/org/w3c/css/properties/css/CssTextEmphasisColor.java
@@ -16,7 +16,6 @@
*/
public class CssTextEmphasisColor extends CssProperty {
-
/**
* Create a new CssTextEmphasisColor
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextEmphasisColor = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextEmphasisColor) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextEmphasisPosition.java b/org/w3c/css/properties/css/CssTextEmphasisPosition.java
index ab5fe29cf..3397779af 100644
--- a/org/w3c/css/properties/css/CssTextEmphasisPosition.java
+++ b/org/w3c/css/properties/css/CssTextEmphasisPosition.java
@@ -16,7 +16,6 @@
*/
public class CssTextEmphasisPosition extends CssProperty {
-
/**
* Create a new CssTextEmphasisPosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextEmphasisPosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextEmphasisPosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextEmphasisStyle.java b/org/w3c/css/properties/css/CssTextEmphasisStyle.java
index 3b9d47f21..5550b1d21 100644
--- a/org/w3c/css/properties/css/CssTextEmphasisStyle.java
+++ b/org/w3c/css/properties/css/CssTextEmphasisStyle.java
@@ -16,7 +16,6 @@
*/
public class CssTextEmphasisStyle extends CssProperty {
-
/**
* Create a new CssTextEmphasisStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextEmphasisStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextEmphasisStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextGroupAlign.java b/org/w3c/css/properties/css/CssTextGroupAlign.java
index 51042675f..13111d294 100644
--- a/org/w3c/css/properties/css/CssTextGroupAlign.java
+++ b/org/w3c/css/properties/css/CssTextGroupAlign.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextGroupAlign = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextGroupAlign) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextIndent.java b/org/w3c/css/properties/css/CssTextIndent.java
index e8da3a446..f122a957b 100644
--- a/org/w3c/css/properties/css/CssTextIndent.java
+++ b/org/w3c/css/properties/css/CssTextIndent.java
@@ -16,7 +16,6 @@
*/
public class CssTextIndent extends CssProperty {
-
/**
* Create a new CssTextIndent
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextIndent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextIndent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextJustify.java b/org/w3c/css/properties/css/CssTextJustify.java
index 6900f0380..b989affb0 100644
--- a/org/w3c/css/properties/css/CssTextJustify.java
+++ b/org/w3c/css/properties/css/CssTextJustify.java
@@ -16,7 +16,6 @@
*/
public class CssTextJustify extends CssProperty {
-
/**
* Create a new CssTextJustify
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextJustify = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextJustify) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextOrientation.java b/org/w3c/css/properties/css/CssTextOrientation.java
index f9038af47..1af584ae4 100644
--- a/org/w3c/css/properties/css/CssTextOrientation.java
+++ b/org/w3c/css/properties/css/CssTextOrientation.java
@@ -16,7 +16,6 @@
*/
public class CssTextOrientation extends CssProperty {
-
/**
* Create a new CssTextOrientation
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextOrientation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextOrientation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextOverflow.java b/org/w3c/css/properties/css/CssTextOverflow.java
index 5ff25b348..dfa8390f1 100644
--- a/org/w3c/css/properties/css/CssTextOverflow.java
+++ b/org/w3c/css/properties/css/CssTextOverflow.java
@@ -16,7 +16,6 @@
*/
public class CssTextOverflow extends CssProperty {
-
/**
* Create a new CssTextOverflow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextOverflow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextOverflow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextRendering.java b/org/w3c/css/properties/css/CssTextRendering.java
index 9315281a1..ba7613191 100644
--- a/org/w3c/css/properties/css/CssTextRendering.java
+++ b/org/w3c/css/properties/css/CssTextRendering.java
@@ -16,7 +16,6 @@
*/
public class CssTextRendering extends CssProperty {
-
/**
* Create a new CssTextRendering
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextRendering = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextRendering) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextShadow.java b/org/w3c/css/properties/css/CssTextShadow.java
index a32e9f419..9c029cbdd 100644
--- a/org/w3c/css/properties/css/CssTextShadow.java
+++ b/org/w3c/css/properties/css/CssTextShadow.java
@@ -16,7 +16,6 @@
*/
public class CssTextShadow extends CssProperty {
-
/**
* Create a new CssTextShadow
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextShadow = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextShadow) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextSizeAdjust.java b/org/w3c/css/properties/css/CssTextSizeAdjust.java
index c8cdf57e1..e37941c83 100644
--- a/org/w3c/css/properties/css/CssTextSizeAdjust.java
+++ b/org/w3c/css/properties/css/CssTextSizeAdjust.java
@@ -13,7 +13,6 @@
*/
public class CssTextSizeAdjust extends CssProperty {
-
/**
* Create a new CssTextSizeAdjust
*/
@@ -46,7 +45,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -62,13 +60,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -82,7 +73,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextSizeAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -93,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextSizeAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextSpacing.java b/org/w3c/css/properties/css/CssTextSpacing.java
index 1dfe4869d..ae9acdbd7 100644
--- a/org/w3c/css/properties/css/CssTextSpacing.java
+++ b/org/w3c/css/properties/css/CssTextSpacing.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextSpacing = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextSpacing) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextSpacingTrim.java b/org/w3c/css/properties/css/CssTextSpacingTrim.java
index 3184adf34..528d29f0a 100644
--- a/org/w3c/css/properties/css/CssTextSpacingTrim.java
+++ b/org/w3c/css/properties/css/CssTextSpacingTrim.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextSpacingTrim = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextSpacingTrim) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextTransform.java b/org/w3c/css/properties/css/CssTextTransform.java
index 3a360228d..4484dce41 100644
--- a/org/w3c/css/properties/css/CssTextTransform.java
+++ b/org/w3c/css/properties/css/CssTextTransform.java
@@ -17,7 +17,6 @@
*/
public class CssTextTransform extends CssProperty {
-
/**
* Create a new CssTextTransform
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextTransform = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextTransform) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextUnderlineOffset.java b/org/w3c/css/properties/css/CssTextUnderlineOffset.java
index 956c6d077..0714d92b4 100644
--- a/org/w3c/css/properties/css/CssTextUnderlineOffset.java
+++ b/org/w3c/css/properties/css/CssTextUnderlineOffset.java
@@ -16,7 +16,6 @@
*/
public class CssTextUnderlineOffset extends CssProperty {
-
/**
* Create a new CssTextUnderlineOffset
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextUnderlineOffset = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextUnderlineOffset) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextUnderlinePosition.java b/org/w3c/css/properties/css/CssTextUnderlinePosition.java
index 6c8d0ad2b..517609800 100644
--- a/org/w3c/css/properties/css/CssTextUnderlinePosition.java
+++ b/org/w3c/css/properties/css/CssTextUnderlinePosition.java
@@ -16,7 +16,6 @@
*/
public class CssTextUnderlinePosition extends CssProperty {
-
/**
* Create a new CssTextUnderlinePosition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextUnderlinePosition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextUnderlinePosition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextWrap.java b/org/w3c/css/properties/css/CssTextWrap.java
index f1b2992d7..cb9933798 100644
--- a/org/w3c/css/properties/css/CssTextWrap.java
+++ b/org/w3c/css/properties/css/CssTextWrap.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextWrap = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextWrap) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextWrapMode.java b/org/w3c/css/properties/css/CssTextWrapMode.java
index afe06c780..e9f8e9183 100644
--- a/org/w3c/css/properties/css/CssTextWrapMode.java
+++ b/org/w3c/css/properties/css/CssTextWrapMode.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextWrapMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextWrapMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTextWrapStyle.java b/org/w3c/css/properties/css/CssTextWrapStyle.java
index 00347482d..d329d2faf 100644
--- a/org/w3c/css/properties/css/CssTextWrapStyle.java
+++ b/org/w3c/css/properties/css/CssTextWrapStyle.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTextWrapStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTextWrapStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTop.java b/org/w3c/css/properties/css/CssTop.java
index 094640fce..5407da5b1 100644
--- a/org/w3c/css/properties/css/CssTop.java
+++ b/org/w3c/css/properties/css/CssTop.java
@@ -16,7 +16,6 @@
*/
public class CssTop extends CssProperty {
-
/**
* Create a new CssTop
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTop) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTouchAction.java b/org/w3c/css/properties/css/CssTouchAction.java
index 3f66d13b3..021b26876 100644
--- a/org/w3c/css/properties/css/CssTouchAction.java
+++ b/org/w3c/css/properties/css/CssTouchAction.java
@@ -17,7 +17,6 @@
*/
public class CssTouchAction extends CssProperty {
-
/**
* Create a new CssTouchAction
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTouchAction = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTouchAction) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransform.java b/org/w3c/css/properties/css/CssTransform.java
index d035014f6..7fc505bb9 100644
--- a/org/w3c/css/properties/css/CssTransform.java
+++ b/org/w3c/css/properties/css/CssTransform.java
@@ -16,7 +16,6 @@
*/
public class CssTransform extends CssProperty {
-
/**
* Create a new CssTransform
*/
@@ -50,7 +49,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +64,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +77,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransform = this;
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +87,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransform) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransformBox.java b/org/w3c/css/properties/css/CssTransformBox.java
index 36a88a3d8..d2cf06a80 100644
--- a/org/w3c/css/properties/css/CssTransformBox.java
+++ b/org/w3c/css/properties/css/CssTransformBox.java
@@ -16,7 +16,6 @@
*/
public class CssTransformBox extends CssProperty {
-
/**
* Create a new CssTransformBox
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransformBox = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransformBox) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransformOrigin.java b/org/w3c/css/properties/css/CssTransformOrigin.java
index e164019a4..f143f4833 100644
--- a/org/w3c/css/properties/css/CssTransformOrigin.java
+++ b/org/w3c/css/properties/css/CssTransformOrigin.java
@@ -16,7 +16,6 @@
*/
public class CssTransformOrigin extends CssProperty {
-
/**
* Create a new CssTransformOrigin
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransformOrigin = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransformOrigin) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransformStyle.java b/org/w3c/css/properties/css/CssTransformStyle.java
index e468d7c1a..c02ddfa41 100644
--- a/org/w3c/css/properties/css/CssTransformStyle.java
+++ b/org/w3c/css/properties/css/CssTransformStyle.java
@@ -16,7 +16,6 @@
*/
public class CssTransformStyle extends CssProperty {
-
/**
* Create a new CssTransformStyle
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransformStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransformStyle) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransition.java b/org/w3c/css/properties/css/CssTransition.java
index 637cd21be..05e2b2e12 100644
--- a/org/w3c/css/properties/css/CssTransition.java
+++ b/org/w3c/css/properties/css/CssTransition.java
@@ -16,7 +16,6 @@
*/
public class CssTransition extends CssProperty {
-
/**
* Create a new CssTransition
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransition = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransition) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransitionDelay.java b/org/w3c/css/properties/css/CssTransitionDelay.java
index f7eb0a017..5ec55ce27 100644
--- a/org/w3c/css/properties/css/CssTransitionDelay.java
+++ b/org/w3c/css/properties/css/CssTransitionDelay.java
@@ -16,7 +16,6 @@
*/
public class CssTransitionDelay extends CssProperty {
-
/**
* Create a new CssTransitionDelay
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransitionDelay = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransitionDelay) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransitionDuration.java b/org/w3c/css/properties/css/CssTransitionDuration.java
index 148ff7fb7..d31f14531 100644
--- a/org/w3c/css/properties/css/CssTransitionDuration.java
+++ b/org/w3c/css/properties/css/CssTransitionDuration.java
@@ -16,7 +16,6 @@
*/
public class CssTransitionDuration extends CssProperty {
-
/**
* Create a new CssTransitionDuration
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransitionDuration = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransitionDuration) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransitionProperty.java b/org/w3c/css/properties/css/CssTransitionProperty.java
index 5f6eafc7d..dc9788bc2 100644
--- a/org/w3c/css/properties/css/CssTransitionProperty.java
+++ b/org/w3c/css/properties/css/CssTransitionProperty.java
@@ -16,7 +16,6 @@
*/
public class CssTransitionProperty extends CssProperty {
-
/**
* Create a new CssTransitionProperty
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransitionProperty = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransitionProperty) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTransitionTimingFunction.java b/org/w3c/css/properties/css/CssTransitionTimingFunction.java
index cb09bd28e..5eee83c94 100644
--- a/org/w3c/css/properties/css/CssTransitionTimingFunction.java
+++ b/org/w3c/css/properties/css/CssTransitionTimingFunction.java
@@ -16,7 +16,6 @@
*/
public class CssTransitionTimingFunction extends CssProperty {
-
/**
* Create a new CssTransitionTimingFunction
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTransitionTimingFunction = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTransitionTimingFunction) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssTranslate.java b/org/w3c/css/properties/css/CssTranslate.java
index cf453be0c..917370c57 100644
--- a/org/w3c/css/properties/css/CssTranslate.java
+++ b/org/w3c/css/properties/css/CssTranslate.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssTranslate = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssTranslate) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssUnicodeBidi.java b/org/w3c/css/properties/css/CssUnicodeBidi.java
index 4b4bc432a..dcf7741ad 100644
--- a/org/w3c/css/properties/css/CssUnicodeBidi.java
+++ b/org/w3c/css/properties/css/CssUnicodeBidi.java
@@ -16,7 +16,6 @@
*/
public class CssUnicodeBidi extends CssProperty {
-
/**
* Create a new CssUnicodeBidi
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssUnicodeBidi) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssUserSelect.java b/org/w3c/css/properties/css/CssUserSelect.java
index 26dffa1f7..9b9e0b283 100644
--- a/org/w3c/css/properties/css/CssUserSelect.java
+++ b/org/w3c/css/properties/css/CssUserSelect.java
@@ -13,7 +13,6 @@
*/
public class CssUserSelect extends CssProperty {
-
/**
* Create a new CssUserSelect
*/
@@ -46,7 +45,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -62,13 +60,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -82,7 +73,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssUserSelect = this;
}
-
/**
* Compares two properties for equality.
*
@@ -93,7 +83,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssUserSelect) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVerticalAlign.java b/org/w3c/css/properties/css/CssVerticalAlign.java
index 077d5afda..9d920c6a2 100644
--- a/org/w3c/css/properties/css/CssVerticalAlign.java
+++ b/org/w3c/css/properties/css/CssVerticalAlign.java
@@ -16,14 +16,12 @@
*/
public class CssVerticalAlign extends CssProperty {
-
/**
* Create a new CssVerticalAlign
*/
public CssVerticalAlign() {
}
-
/**
* Set the value of the property
* Does not check the number of values
@@ -51,7 +49,6 @@ public CssVerticalAlign(ApplContext ac, CssExpression expression,
}
-
/**
* Returns the value of this property
*/
@@ -59,7 +56,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -67,13 +63,6 @@ public final String getPropertyName() {
return "vertical-align";
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Returns true if this property is "softly" inherited
* e.g. his value is equals to inherit
diff --git a/org/w3c/css/properties/css/CssVisibility.java b/org/w3c/css/properties/css/CssVisibility.java
index a4f939913..b4f5a5888 100644
--- a/org/w3c/css/properties/css/CssVisibility.java
+++ b/org/w3c/css/properties/css/CssVisibility.java
@@ -16,7 +16,6 @@
*/
public class CssVisibility extends CssProperty {
-
/**
* Create a new CssVisibility
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVisibility) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceBalance.java b/org/w3c/css/properties/css/CssVoiceBalance.java
index 4fda2149c..652ddd54d 100644
--- a/org/w3c/css/properties/css/CssVoiceBalance.java
+++ b/org/w3c/css/properties/css/CssVoiceBalance.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceBalance extends CssProperty {
-
/**
* Create a new CssVoiceBalance
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceBalance = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceBalance) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceDuration.java b/org/w3c/css/properties/css/CssVoiceDuration.java
index 9c2de4d1c..c27372ae9 100644
--- a/org/w3c/css/properties/css/CssVoiceDuration.java
+++ b/org/w3c/css/properties/css/CssVoiceDuration.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceDuration extends CssProperty {
-
/**
* Create a new CssVoiceDuration
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceDuration = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceDuration) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceFamily.java b/org/w3c/css/properties/css/CssVoiceFamily.java
index f6136f0de..bc7f5767e 100644
--- a/org/w3c/css/properties/css/CssVoiceFamily.java
+++ b/org/w3c/css/properties/css/CssVoiceFamily.java
@@ -50,7 +50,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -66,13 +65,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -94,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceFamily) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoicePitch.java b/org/w3c/css/properties/css/CssVoicePitch.java
index 566bae917..309f5e5be 100644
--- a/org/w3c/css/properties/css/CssVoicePitch.java
+++ b/org/w3c/css/properties/css/CssVoicePitch.java
@@ -16,7 +16,6 @@
*/
public class CssVoicePitch extends CssProperty {
-
/**
* Create a new CssVoicePitch
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoicePitch = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoicePitch) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceRange.java b/org/w3c/css/properties/css/CssVoiceRange.java
index f88ba572d..d0d46dd1a 100644
--- a/org/w3c/css/properties/css/CssVoiceRange.java
+++ b/org/w3c/css/properties/css/CssVoiceRange.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceRange extends CssProperty {
-
/**
* Create a new CssVoiceRange
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceRange = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceRange) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceRate.java b/org/w3c/css/properties/css/CssVoiceRate.java
index 39a19a0b3..1819b039f 100644
--- a/org/w3c/css/properties/css/CssVoiceRate.java
+++ b/org/w3c/css/properties/css/CssVoiceRate.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceRate extends CssProperty {
-
/**
* Create a new CssVoiceRate
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceRate = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceRate) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceStress.java b/org/w3c/css/properties/css/CssVoiceStress.java
index 8fec8f1fa..1f945adf3 100644
--- a/org/w3c/css/properties/css/CssVoiceStress.java
+++ b/org/w3c/css/properties/css/CssVoiceStress.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceStress extends CssProperty {
-
/**
* Create a new CssVoiceStress
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceStress = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceStress) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVoiceVolume.java b/org/w3c/css/properties/css/CssVoiceVolume.java
index 0e9fa1cc1..c1d98edfb 100644
--- a/org/w3c/css/properties/css/CssVoiceVolume.java
+++ b/org/w3c/css/properties/css/CssVoiceVolume.java
@@ -16,7 +16,6 @@
*/
public class CssVoiceVolume extends CssProperty {
-
/**
* Create a new CssVoiceVolume
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssVoiceVolume = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVoiceVolume) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssVolume.java b/org/w3c/css/properties/css/CssVolume.java
index df4f24dd2..9f9e5666d 100644
--- a/org/w3c/css/properties/css/CssVolume.java
+++ b/org/w3c/css/properties/css/CssVolume.java
@@ -16,7 +16,6 @@
*/
public class CssVolume extends CssProperty {
-
/**
* Create a new CssVolume
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssVolume) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWhiteSpace.java b/org/w3c/css/properties/css/CssWhiteSpace.java
index 534b69b36..f3cbb98d9 100644
--- a/org/w3c/css/properties/css/CssWhiteSpace.java
+++ b/org/w3c/css/properties/css/CssWhiteSpace.java
@@ -16,7 +16,6 @@
*/
public class CssWhiteSpace extends CssProperty {
-
/*
* Create a new CssWhiteSpace
*/
@@ -65,13 +64,6 @@ public boolean isSoftlyInherited() {
return false;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssWhiteSpaceCollapse.java b/org/w3c/css/properties/css/CssWhiteSpaceCollapse.java
index da2db1bd9..8e3904819 100644
--- a/org/w3c/css/properties/css/CssWhiteSpaceCollapse.java
+++ b/org/w3c/css/properties/css/CssWhiteSpaceCollapse.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWhiteSpaceCollapse = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWhiteSpaceCollapse) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWhiteSpaceTrim.java b/org/w3c/css/properties/css/CssWhiteSpaceTrim.java
index 63db9917c..61b2bcf24 100644
--- a/org/w3c/css/properties/css/CssWhiteSpaceTrim.java
+++ b/org/w3c/css/properties/css/CssWhiteSpaceTrim.java
@@ -47,7 +47,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -63,13 +62,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -83,7 +75,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWhiteSpaceTrim = this;
}
-
/**
* Compares two properties for equality.
*
@@ -94,7 +85,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWhiteSpaceTrim) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWidows.java b/org/w3c/css/properties/css/CssWidows.java
index be4d245fb..43ace75a9 100644
--- a/org/w3c/css/properties/css/CssWidows.java
+++ b/org/w3c/css/properties/css/CssWidows.java
@@ -19,7 +19,6 @@ public class CssWidows extends CssProperty {
public static final String propertyName = "widows";
-
/**
* Create a new CssWidows
*/
@@ -77,13 +76,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssWidth.java b/org/w3c/css/properties/css/CssWidth.java
index 60a3497e2..d8e7f264d 100644
--- a/org/w3c/css/properties/css/CssWidth.java
+++ b/org/w3c/css/properties/css/CssWidth.java
@@ -21,7 +21,6 @@ public class CssWidth extends CssProperty {
public static CssIdent auto = CssIdent.getIdent("auto");
-
/**
* Create a new CssWidth
*/
@@ -62,14 +61,6 @@ public boolean isSoftlyInherited() {
return inherit == value;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssWillChange.java b/org/w3c/css/properties/css/CssWillChange.java
index ca72e756e..b47812392 100644
--- a/org/w3c/css/properties/css/CssWillChange.java
+++ b/org/w3c/css/properties/css/CssWillChange.java
@@ -16,7 +16,6 @@
*/
public class CssWillChange extends CssProperty {
-
/**
* Create a new CssWillChange
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWillChange = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWillChange) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWordBreak.java b/org/w3c/css/properties/css/CssWordBreak.java
index a46696ea2..870a5fc01 100644
--- a/org/w3c/css/properties/css/CssWordBreak.java
+++ b/org/w3c/css/properties/css/CssWordBreak.java
@@ -16,7 +16,6 @@
*/
public class CssWordBreak extends CssProperty {
-
/**
* Create a new CssWordBreak
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWordBreak = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWordBreak) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWordSpaceTransform.java b/org/w3c/css/properties/css/CssWordSpaceTransform.java
index d3005f2a3..80d3b4aeb 100644
--- a/org/w3c/css/properties/css/CssWordSpaceTransform.java
+++ b/org/w3c/css/properties/css/CssWordSpaceTransform.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWordSpaceTransform = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWordSpaceTransform) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWordSpacing.java b/org/w3c/css/properties/css/CssWordSpacing.java
index 94ab02e8b..bbb151ac4 100644
--- a/org/w3c/css/properties/css/CssWordSpacing.java
+++ b/org/w3c/css/properties/css/CssWordSpacing.java
@@ -15,7 +15,6 @@
*/
public class CssWordSpacing extends CssProperty {
-
/**
* Create a new CssWordSpacing.
*/
@@ -62,13 +61,6 @@ public boolean isSoftlyInherited() {
return value == inherit;
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Adds this property to a style.
*
diff --git a/org/w3c/css/properties/css/CssWrapAfter.java b/org/w3c/css/properties/css/CssWrapAfter.java
index 7026769bf..b28081505 100644
--- a/org/w3c/css/properties/css/CssWrapAfter.java
+++ b/org/w3c/css/properties/css/CssWrapAfter.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWrapAfter = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWrapAfter) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWrapBefore.java b/org/w3c/css/properties/css/CssWrapBefore.java
index 29fef92a4..ab7370b5e 100644
--- a/org/w3c/css/properties/css/CssWrapBefore.java
+++ b/org/w3c/css/properties/css/CssWrapBefore.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWrapBefore = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWrapBefore) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWrapInside.java b/org/w3c/css/properties/css/CssWrapInside.java
index b6c1a0efd..b61ccf063 100644
--- a/org/w3c/css/properties/css/CssWrapInside.java
+++ b/org/w3c/css/properties/css/CssWrapInside.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWrapInside = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWrapInside) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssWritingMode.java b/org/w3c/css/properties/css/CssWritingMode.java
index df6094f28..6ebdb25ca 100644
--- a/org/w3c/css/properties/css/CssWritingMode.java
+++ b/org/w3c/css/properties/css/CssWritingMode.java
@@ -16,7 +16,6 @@
*/
public class CssWritingMode extends CssProperty {
-
/**
* Create a new CssWritingMode
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -85,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.cssWritingMode = this;
}
-
/**
* Compares two properties for equality.
*
@@ -96,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWritingMode) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/CssZIndex.java b/org/w3c/css/properties/css/CssZIndex.java
index eb1c2b0ec..959b37a68 100644
--- a/org/w3c/css/properties/css/CssZIndex.java
+++ b/org/w3c/css/properties/css/CssZIndex.java
@@ -21,7 +21,6 @@ public class CssZIndex extends CssProperty {
public static final String propertyName = "z-index";
-
public static CssIdent auto = CssIdent.getIdent("auto");
/**
@@ -79,13 +78,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
diff --git a/org/w3c/css/properties/css/CssZoom.java b/org/w3c/css/properties/css/CssZoom.java
index 907e2a8a9..23de4f771 100644
--- a/org/w3c/css/properties/css/CssZoom.java
+++ b/org/w3c/css/properties/css/CssZoom.java
@@ -16,7 +16,6 @@
*/
public class CssZoom extends CssProperty {
-
/**
* Create a new CssZoom
*/
@@ -49,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -65,13 +63,6 @@ public boolean isSoftlyInherited() {
return inherit.equals(value);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -93,7 +84,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssZoom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/colorprofile/CssName.java b/org/w3c/css/properties/css/colorprofile/CssName.java
index 05ca7a976..15d64230b 100644
--- a/org/w3c/css/properties/css/colorprofile/CssName.java
+++ b/org/w3c/css/properties/css/colorprofile/CssName.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.colorProfileCssName = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssName) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/colorprofile/CssRenderingIntent.java b/org/w3c/css/properties/css/colorprofile/CssRenderingIntent.java
index c8a2641af..73a10afef 100644
--- a/org/w3c/css/properties/css/colorprofile/CssRenderingIntent.java
+++ b/org/w3c/css/properties/css/colorprofile/CssRenderingIntent.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.colorProfileCssRenderingIntent = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRenderingIntent) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/colorprofile/CssSrc.java b/org/w3c/css/properties/css/colorprofile/CssSrc.java
index a2e3e14f1..970c0c42f 100644
--- a/org/w3c/css/properties/css/colorprofile/CssSrc.java
+++ b/org/w3c/css/properties/css/colorprofile/CssSrc.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.colorProfileCssSrc = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSrc) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssAdditiveSymbols.java b/org/w3c/css/properties/css/counterstyle/CssAdditiveSymbols.java
index 8d0d4f472..a64626f74 100644
--- a/org/w3c/css/properties/css/counterstyle/CssAdditiveSymbols.java
+++ b/org/w3c/css/properties/css/counterstyle/CssAdditiveSymbols.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssAdditiveSymbols = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAdditiveSymbols) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssFallback.java b/org/w3c/css/properties/css/counterstyle/CssFallback.java
index fd5f09655..c4374df43 100644
--- a/org/w3c/css/properties/css/counterstyle/CssFallback.java
+++ b/org/w3c/css/properties/css/counterstyle/CssFallback.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssFallback = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFallback) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssNegative.java b/org/w3c/css/properties/css/counterstyle/CssNegative.java
index 332613532..c4c531719 100644
--- a/org/w3c/css/properties/css/counterstyle/CssNegative.java
+++ b/org/w3c/css/properties/css/counterstyle/CssNegative.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssNegative = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssNegative) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssPad.java b/org/w3c/css/properties/css/counterstyle/CssPad.java
index d50ed04a4..f3f3f4f85 100644
--- a/org/w3c/css/properties/css/counterstyle/CssPad.java
+++ b/org/w3c/css/properties/css/counterstyle/CssPad.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssPad = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPad) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssPrefix.java b/org/w3c/css/properties/css/counterstyle/CssPrefix.java
index 8933a12e8..30a32aa2f 100644
--- a/org/w3c/css/properties/css/counterstyle/CssPrefix.java
+++ b/org/w3c/css/properties/css/counterstyle/CssPrefix.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssPrefix = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssPrefix) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssRange.java b/org/w3c/css/properties/css/counterstyle/CssRange.java
index 27b889410..62a71d243 100644
--- a/org/w3c/css/properties/css/counterstyle/CssRange.java
+++ b/org/w3c/css/properties/css/counterstyle/CssRange.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssRange = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssRange) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssSpeakAs.java b/org/w3c/css/properties/css/counterstyle/CssSpeakAs.java
index 291e9ec27..a769bd98f 100644
--- a/org/w3c/css/properties/css/counterstyle/CssSpeakAs.java
+++ b/org/w3c/css/properties/css/counterstyle/CssSpeakAs.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssSpeakAs = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSpeakAs) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssSuffix.java b/org/w3c/css/properties/css/counterstyle/CssSuffix.java
index 908ac1ea2..70db8b8fb 100644
--- a/org/w3c/css/properties/css/counterstyle/CssSuffix.java
+++ b/org/w3c/css/properties/css/counterstyle/CssSuffix.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssSuffix = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSuffix) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssSymbols.java b/org/w3c/css/properties/css/counterstyle/CssSymbols.java
index 799c9cfa7..827bdb9a3 100644
--- a/org/w3c/css/properties/css/counterstyle/CssSymbols.java
+++ b/org/w3c/css/properties/css/counterstyle/CssSymbols.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssSymbols = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSymbols) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/counterstyle/CssSystem.java b/org/w3c/css/properties/css/counterstyle/CssSystem.java
index eb1c24593..877c29e6f 100644
--- a/org/w3c/css/properties/css/counterstyle/CssSystem.java
+++ b/org/w3c/css/properties/css/counterstyle/CssSystem.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.counterStyleCssSystem = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSystem) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssAscentOverride.java b/org/w3c/css/properties/css/fontface/CssAscentOverride.java
index 577e95b0e..91042bb32 100644
--- a/org/w3c/css/properties/css/fontface/CssAscentOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssAscentOverride.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssAscentOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssAscentOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssDescentOverride.java b/org/w3c/css/properties/css/fontface/CssDescentOverride.java
index e640d5c4b..dbaf9ccda 100644
--- a/org/w3c/css/properties/css/fontface/CssDescentOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssDescentOverride.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssDescentOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssDescentOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontDisplay.java b/org/w3c/css/properties/css/fontface/CssFontDisplay.java
index 92b7ece53..6736c83d7 100644
--- a/org/w3c/css/properties/css/fontface/CssFontDisplay.java
+++ b/org/w3c/css/properties/css/fontface/CssFontDisplay.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontDisplay = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontDisplay) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontFamily.java b/org/w3c/css/properties/css/fontface/CssFontFamily.java
index 4b2d60e51..d3cb6bb89 100644
--- a/org/w3c/css/properties/css/fontface/CssFontFamily.java
+++ b/org/w3c/css/properties/css/fontface/CssFontFamily.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontFamily = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontFamily) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontFeatureSettings.java b/org/w3c/css/properties/css/fontface/CssFontFeatureSettings.java
index 6f063e275..783059ea3 100644
--- a/org/w3c/css/properties/css/fontface/CssFontFeatureSettings.java
+++ b/org/w3c/css/properties/css/fontface/CssFontFeatureSettings.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontFeatureSettings = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontFeatureSettings) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontLanguageOverride.java b/org/w3c/css/properties/css/fontface/CssFontLanguageOverride.java
index 5856d7138..e45ca58fd 100644
--- a/org/w3c/css/properties/css/fontface/CssFontLanguageOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssFontLanguageOverride.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontLanguageOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontLanguageOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontNamedInstance.java b/org/w3c/css/properties/css/fontface/CssFontNamedInstance.java
index 50c7de6de..fc77d26cb 100644
--- a/org/w3c/css/properties/css/fontface/CssFontNamedInstance.java
+++ b/org/w3c/css/properties/css/fontface/CssFontNamedInstance.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontNamedInstance = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontNamedInstance) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontStyle.java b/org/w3c/css/properties/css/fontface/CssFontStyle.java
index adf3b15bb..75f91ef14 100644
--- a/org/w3c/css/properties/css/fontface/CssFontStyle.java
+++ b/org/w3c/css/properties/css/fontface/CssFontStyle.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontStyle = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontVariationSettings.java b/org/w3c/css/properties/css/fontface/CssFontVariationSettings.java
index d3ba28db5..39d1d3379 100644
--- a/org/w3c/css/properties/css/fontface/CssFontVariationSettings.java
+++ b/org/w3c/css/properties/css/fontface/CssFontVariationSettings.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontVariationSettings = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontVariationSettings) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontWeight.java b/org/w3c/css/properties/css/fontface/CssFontWeight.java
index b667985ac..f1e1f09e3 100644
--- a/org/w3c/css/properties/css/fontface/CssFontWeight.java
+++ b/org/w3c/css/properties/css/fontface/CssFontWeight.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontWeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssFontWidth.java b/org/w3c/css/properties/css/fontface/CssFontWidth.java
index 742bfae33..3a6db315d 100644
--- a/org/w3c/css/properties/css/fontface/CssFontWidth.java
+++ b/org/w3c/css/properties/css/fontface/CssFontWidth.java
@@ -48,7 +48,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -64,13 +63,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -84,7 +76,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssFontWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -95,7 +86,6 @@ public boolean equals(CssProperty property) {
value.equals(property.value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssLineGapOverride.java b/org/w3c/css/properties/css/fontface/CssLineGapOverride.java
index 6e3093823..e50db0bc8 100644
--- a/org/w3c/css/properties/css/fontface/CssLineGapOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssLineGapOverride.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssLineGapOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssLineGapOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSizeAdjust.java b/org/w3c/css/properties/css/fontface/CssSizeAdjust.java
index 4d1c5e796..de076c4ef 100644
--- a/org/w3c/css/properties/css/fontface/CssSizeAdjust.java
+++ b/org/w3c/css/properties/css/fontface/CssSizeAdjust.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSizeAdjust = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSizeAdjust) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSrc.java b/org/w3c/css/properties/css/fontface/CssSrc.java
index bdb870bc1..0d59a8008 100644
--- a/org/w3c/css/properties/css/fontface/CssSrc.java
+++ b/org/w3c/css/properties/css/fontface/CssSrc.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSrc = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSrc) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSubscriptPositionOverride.java b/org/w3c/css/properties/css/fontface/CssSubscriptPositionOverride.java
index 8d43a9b11..e3426f471 100644
--- a/org/w3c/css/properties/css/fontface/CssSubscriptPositionOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssSubscriptPositionOverride.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSubscriptPositionOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSubscriptPositionOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSubscriptSizeOverride.java b/org/w3c/css/properties/css/fontface/CssSubscriptSizeOverride.java
index 8629abc69..6abc17d78 100644
--- a/org/w3c/css/properties/css/fontface/CssSubscriptSizeOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssSubscriptSizeOverride.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSubscriptSizeOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSubscriptSizeOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSuperscriptPositionOverride.java b/org/w3c/css/properties/css/fontface/CssSuperscriptPositionOverride.java
index 298445c58..b257ada0d 100644
--- a/org/w3c/css/properties/css/fontface/CssSuperscriptPositionOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssSuperscriptPositionOverride.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSuperscriptPositionOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSuperscriptPositionOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssSuperscriptSizeOverride.java b/org/w3c/css/properties/css/fontface/CssSuperscriptSizeOverride.java
index f3403b4e8..c2855aefe 100644
--- a/org/w3c/css/properties/css/fontface/CssSuperscriptSizeOverride.java
+++ b/org/w3c/css/properties/css/fontface/CssSuperscriptSizeOverride.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssSuperscriptSizeOverride = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssSuperscriptSizeOverride) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontface/CssUnicodeRange.java b/org/w3c/css/properties/css/fontface/CssUnicodeRange.java
index 1c61ca3d9..619a9a3c4 100644
--- a/org/w3c/css/properties/css/fontface/CssUnicodeRange.java
+++ b/org/w3c/css/properties/css/fontface/CssUnicodeRange.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFaceCssUnicodeRange = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssUnicodeRange) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontfeaturevalues/CatchallProperty.java b/org/w3c/css/properties/css/fontfeaturevalues/CatchallProperty.java
index ed446b054..c97a4cb41 100644
--- a/org/w3c/css/properties/css/fontfeaturevalues/CatchallProperty.java
+++ b/org/w3c/css/properties/css/fontfeaturevalues/CatchallProperty.java
@@ -54,7 +54,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -70,13 +69,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -86,7 +78,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
// TODO
}
-
/**
* Compares two properties for equality.
*
@@ -97,7 +88,6 @@ public boolean equals(CssProperty property) {
value.equals(((CatchallProperty) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontfeaturevalues/CssFontDisplay.java b/org/w3c/css/properties/css/fontfeaturevalues/CssFontDisplay.java
index 4fc2c1620..e04806d91 100644
--- a/org/w3c/css/properties/css/fontfeaturevalues/CssFontDisplay.java
+++ b/org/w3c/css/properties/css/fontfeaturevalues/CssFontDisplay.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontFeatureValuesCssFontDisplay = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontDisplay) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontpalettevalues/CssBasePalette.java b/org/w3c/css/properties/css/fontpalettevalues/CssBasePalette.java
index fe179ef1a..29b8e3bcb 100644
--- a/org/w3c/css/properties/css/fontpalettevalues/CssBasePalette.java
+++ b/org/w3c/css/properties/css/fontpalettevalues/CssBasePalette.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontPaletteValuesCssBasePalette = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssBasePalette) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontpalettevalues/CssFontFamily.java b/org/w3c/css/properties/css/fontpalettevalues/CssFontFamily.java
index 698906fe2..877f63515 100644
--- a/org/w3c/css/properties/css/fontpalettevalues/CssFontFamily.java
+++ b/org/w3c/css/properties/css/fontpalettevalues/CssFontFamily.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontPaletteValuesCssFontFamily = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssFontFamily) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/fontpalettevalues/CssOverrideColors.java b/org/w3c/css/properties/css/fontpalettevalues/CssOverrideColors.java
index a4cad345b..ecc0cb1c2 100644
--- a/org/w3c/css/properties/css/fontpalettevalues/CssOverrideColors.java
+++ b/org/w3c/css/properties/css/fontpalettevalues/CssOverrideColors.java
@@ -53,7 +53,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -69,13 +68,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -89,7 +81,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.fontPaletteValuesCssOverrideColors = this;
}
-
/**
* Compares two properties for equality.
*
@@ -100,7 +91,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOverrideColors) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/page/CssMarks.java b/org/w3c/css/properties/css/page/CssMarks.java
index ca136698b..f4b738919 100644
--- a/org/w3c/css/properties/css/page/CssMarks.java
+++ b/org/w3c/css/properties/css/page/CssMarks.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.pageCssMarks = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMarks) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssHeight.java b/org/w3c/css/properties/css/viewport/CssHeight.java
index 3df8f043b..6b2b17ec5 100644
--- a/org/w3c/css/properties/css/viewport/CssHeight.java
+++ b/org/w3c/css/properties/css/viewport/CssHeight.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssHeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMaxHeight.java b/org/w3c/css/properties/css/viewport/CssMaxHeight.java
index b4f4347ce..0bafa272f 100644
--- a/org/w3c/css/properties/css/viewport/CssMaxHeight.java
+++ b/org/w3c/css/properties/css/viewport/CssMaxHeight.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMaxHeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMaxWidth.java b/org/w3c/css/properties/css/viewport/CssMaxWidth.java
index 39357aaff..c5adf8a1b 100644
--- a/org/w3c/css/properties/css/viewport/CssMaxWidth.java
+++ b/org/w3c/css/properties/css/viewport/CssMaxWidth.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMaxWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMaxZoom.java b/org/w3c/css/properties/css/viewport/CssMaxZoom.java
index 16b56ebf4..3a8a2782c 100644
--- a/org/w3c/css/properties/css/viewport/CssMaxZoom.java
+++ b/org/w3c/css/properties/css/viewport/CssMaxZoom.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMaxZoom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMaxZoom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMinHeight.java b/org/w3c/css/properties/css/viewport/CssMinHeight.java
index bb959d031..12fe13009 100644
--- a/org/w3c/css/properties/css/viewport/CssMinHeight.java
+++ b/org/w3c/css/properties/css/viewport/CssMinHeight.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMinHeight = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinHeight) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMinWidth.java b/org/w3c/css/properties/css/viewport/CssMinWidth.java
index 337431538..f5bb4e3bf 100644
--- a/org/w3c/css/properties/css/viewport/CssMinWidth.java
+++ b/org/w3c/css/properties/css/viewport/CssMinWidth.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMinWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssMinZoom.java b/org/w3c/css/properties/css/viewport/CssMinZoom.java
index 348f73da0..b0fb339f1 100644
--- a/org/w3c/css/properties/css/viewport/CssMinZoom.java
+++ b/org/w3c/css/properties/css/viewport/CssMinZoom.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssMinZoom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssMinZoom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssOrientation.java b/org/w3c/css/properties/css/viewport/CssOrientation.java
index 8ee35f7f0..2e0bdd50c 100644
--- a/org/w3c/css/properties/css/viewport/CssOrientation.java
+++ b/org/w3c/css/properties/css/viewport/CssOrientation.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssOrientation = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssOrientation) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssUserZoom.java b/org/w3c/css/properties/css/viewport/CssUserZoom.java
index 4f69b1e77..845c22fc7 100644
--- a/org/w3c/css/properties/css/viewport/CssUserZoom.java
+++ b/org/w3c/css/properties/css/viewport/CssUserZoom.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssUserZoom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssUserZoom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssWidth.java b/org/w3c/css/properties/css/viewport/CssWidth.java
index 5346b134b..801327d98 100644
--- a/org/w3c/css/properties/css/viewport/CssWidth.java
+++ b/org/w3c/css/properties/css/viewport/CssWidth.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssWidth = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssWidth) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css/viewport/CssZoom.java b/org/w3c/css/properties/css/viewport/CssZoom.java
index 3865712a3..69455d9b4 100644
--- a/org/w3c/css/properties/css/viewport/CssZoom.java
+++ b/org/w3c/css/properties/css/viewport/CssZoom.java
@@ -52,7 +52,6 @@ public Object get() {
return value;
}
-
/**
* Returns the name of this property
*/
@@ -68,13 +67,6 @@ public boolean isSoftlyInherited() {
return value.equals(inherit);
}
- /**
- * Returns a string representation of the object.
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Add this property to the CssStyle.
*
@@ -88,7 +80,6 @@ public void addToStyle(ApplContext ac, CssStyle style) {
s.viewportCssZoom = this;
}
-
/**
* Compares two properties for equality.
*
@@ -99,7 +90,6 @@ public boolean equals(CssProperty property) {
value.equals(((CssZoom) property).value));
}
-
/**
* Get this property in the style.
*
diff --git a/org/w3c/css/properties/css3/CssAnimation.java b/org/w3c/css/properties/css3/CssAnimation.java
index dfd03b9d6..64e9f5844 100644
--- a/org/w3c/css/properties/css3/CssAnimation.java
+++ b/org/w3c/css/properties/css3/CssAnimation.java
@@ -306,6 +306,9 @@ private class CssAnimationValue extends CssValueList {
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
boolean doneFirst = false;
StringBuilder sb = new StringBuilder();
if (name != null) {
@@ -346,8 +349,8 @@ public String toString() {
}
sb.append(fillmode);
}
-
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
}
diff --git a/org/w3c/css/properties/css3/CssAzimuth.java b/org/w3c/css/properties/css3/CssAzimuth.java
index d5c5149ce..3cee0ff6f 100644
--- a/org/w3c/css/properties/css3/CssAzimuth.java
+++ b/org/w3c/css/properties/css3/CssAzimuth.java
@@ -202,18 +202,22 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString == null) {
+ return valueString;
+ }
if (isBehind) {
StringBuilder sb = new StringBuilder();
sb.append(behind);
if (identValue != null) {
sb.append(' ').append(identValue);
}
- return sb.toString();
- }
- if (identValue != null) {
- return identValue.toString();
+ valueString = sb.toString();
+ } else if (identValue != null) {
+ valueString = identValue.toString();
+ } else {
+ valueString = angleValue.toString();
}
- return angleValue.toString();
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css3/CssBorderBottom.java b/org/w3c/css/properties/css3/CssBorderBottom.java
index 11b558014..fc70c7016 100644
--- a/org/w3c/css/properties/css3/CssBorderBottom.java
+++ b/org/w3c/css/properties/css3/CssBorderBottom.java
@@ -71,12 +71,17 @@ public CssBorderBottom(ApplContext ac, CssExpression expression,
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (_width != null) {
if (inherit == _width.value) {
- return inherit.toString();
+ valueString = _width.toString();
+ return valueString;
}
if (initial == _width.value) {
- return initial.toString();
+ valueString = _width.toString();
+ return valueString;
}
}
StringBuilder sb = new StringBuilder();
@@ -100,6 +105,7 @@ public String toString() {
sb.append(' ').append(_color);
}
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
diff --git a/org/w3c/css/properties/css3/CssBorderImage.java b/org/w3c/css/properties/css3/CssBorderImage.java
index 5363d94b9..39d8766b1 100644
--- a/org/w3c/css/properties/css3/CssBorderImage.java
+++ b/org/w3c/css/properties/css3/CssBorderImage.java
@@ -443,8 +443,12 @@ private CssExpression getOutsetExpression(ApplContext ac, CssExpression expressi
}
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (value != null) {
- return value.toString();
+ valueString = value.toString();
+ return valueString;
}
boolean first = true;
StringBuilder sb = new StringBuilder();
@@ -474,6 +478,7 @@ public String toString() {
}
sb.append(repeat);
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
diff --git a/org/w3c/css/properties/css3/CssBorderLeft.java b/org/w3c/css/properties/css3/CssBorderLeft.java
index d2c1e99c9..a89e0a80f 100644
--- a/org/w3c/css/properties/css3/CssBorderLeft.java
+++ b/org/w3c/css/properties/css3/CssBorderLeft.java
@@ -29,8 +29,7 @@ public CssBorderLeft() {
* Does not check the number of values
*
* @param expression The expression for this property
- * @throws org.w3c.css.util.InvalidParamException
- * The expression is incorrect
+ * @throws org.w3c.css.util.InvalidParamException The expression is incorrect
*/
public CssBorderLeft(ApplContext ac, CssExpression expression)
throws InvalidParamException {
@@ -42,8 +41,7 @@ public CssBorderLeft(ApplContext ac, CssExpression expression)
*
* @param expression The expression for this property
* @param check set it to true to check the number of values
- * @throws org.w3c.css.util.InvalidParamException
- * The expression is incorrect
+ * @throws org.w3c.css.util.InvalidParamException The expression is incorrect
*/
public CssBorderLeft(ApplContext ac, CssExpression expression,
boolean check) throws InvalidParamException {
@@ -79,12 +77,17 @@ public CssBorderLeft(ApplContext ac, CssExpression expression,
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (_width != null) {
if (inherit == _width.value) {
- return inherit.toString();
+ valueString = inherit.toString();
+ return valueString;
}
if (initial == _width.value) {
- return initial.toString();
+ valueString = initial.toString();
+ return valueString;
}
}
StringBuilder sb = new StringBuilder();
@@ -108,6 +111,7 @@ public String toString() {
sb.append(' ').append(_color);
}
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
diff --git a/org/w3c/css/properties/css3/CssBorderRight.java b/org/w3c/css/properties/css3/CssBorderRight.java
index bce15428e..7c5f8d81f 100644
--- a/org/w3c/css/properties/css3/CssBorderRight.java
+++ b/org/w3c/css/properties/css3/CssBorderRight.java
@@ -68,12 +68,17 @@ public CssBorderRight(ApplContext ac, CssExpression expression,
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (_width != null) {
if (inherit == _width.value) {
- return inherit.toString();
+ valueString = inherit.toString();
+ return valueString;
}
if (initial == _width.value) {
- return initial.toString();
+ valueString = initial.toString();
+ return valueString;
}
}
StringBuilder sb = new StringBuilder();
@@ -97,6 +102,7 @@ public String toString() {
sb.append(' ').append(_color);
}
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
diff --git a/org/w3c/css/properties/css3/CssBorderTop.java b/org/w3c/css/properties/css3/CssBorderTop.java
index 691ad256e..30cbf7aa8 100644
--- a/org/w3c/css/properties/css3/CssBorderTop.java
+++ b/org/w3c/css/properties/css3/CssBorderTop.java
@@ -71,10 +71,14 @@ public CssBorderTop(ApplContext ac, CssExpression expression,
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (_width != null) {
try {
if ((_width.value.getType() == CssTypes.CSS_IDENT) && CssIdent.isCssWide(_width.value.getIdent())) {
- return _width.value.toString();
+ valueString = _width.value.toString();
+ return valueString;
}
} catch (Exception ignored) {
}
@@ -100,7 +104,8 @@ public String toString() {
sb.append(' ').append(_color);
}
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
}
diff --git a/org/w3c/css/properties/css3/CssColor.java b/org/w3c/css/properties/css3/CssColor.java
index 5645f5b0a..05c012840 100644
--- a/org/w3c/css/properties/css3/CssColor.java
+++ b/org/w3c/css/properties/css3/CssColor.java
@@ -153,11 +153,15 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object.
*/
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (value != null) {
- return value.toString();
+ valueString = value.toString();
} else {
- return color.toString();
+ valueString = (color != null) ? color.toString() : null;
}
+ return valueString;
}
/**
diff --git a/org/w3c/css/properties/css3/CssColumnSpan.java b/org/w3c/css/properties/css3/CssColumnSpan.java
index 5701ee04d..50710e287 100644
--- a/org/w3c/css/properties/css3/CssColumnSpan.java
+++ b/org/w3c/css/properties/css3/CssColumnSpan.java
@@ -24,7 +24,6 @@
public class CssColumnSpan extends org.w3c.css.properties.css.CssColumnSpan {
-
static CssIdent all;
static {
@@ -101,13 +100,6 @@ public boolean isSoftlyInherited() {
return (value == inherit);
}
- /**
- * Returns a string representation of the object
- */
- public String toString() {
- return value.toString();
- }
-
/**
* Is the value of this property a default value
* It is used by all macro for the function print
diff --git a/org/w3c/css/properties/css3/CssFont.java b/org/w3c/css/properties/css3/CssFont.java
index e28cc8e3f..f19c00eb4 100644
--- a/org/w3c/css/properties/css3/CssFont.java
+++ b/org/w3c/css/properties/css3/CssFont.java
@@ -291,8 +291,12 @@ public CssFont(ApplContext ac, CssExpression expression)
@Override
public String toString() {
+ if (valueString != null) {
+ return valueString;
+ }
if (value != null) {
- return value.toString();
+ valueString = value.toString();
+ return valueString;
}
boolean first = true;
StringBuilder sb = new StringBuilder();
@@ -343,7 +347,8 @@ public String toString() {
sb.append(' ');
sb.append(fontFamily);
}
- return sb.toString();
+ valueString = sb.toString();
+ return valueString;
}
@Override
diff --git a/org/w3c/css/properties/css3/CssRubySpan.java b/org/w3c/css/properties/css3/CssRubySpan.java
index 779f4d5d0..e9f00ff47 100644
--- a/org/w3c/css/properties/css3/CssRubySpan.java
+++ b/org/w3c/css/properties/css3/CssRubySpan.java
@@ -161,10 +161,11 @@ public boolean isSoftlyInherited() {
* Returns a string representation of the object
*/
public String toString() {
- if (rubyspan != null)
- return rubyspan.toString();
- else
- return values.firstElement().toString();
+ if (valueString != null) {
+ return valueString;
+ }
+ valueString = (rubyspan != null) ? rubyspan.toString() : values.firstElement().toString();
+ return valueString;
}
/**