java.lang.Object
io.sf.carte.echosvg.css.engine.value.AbstractValue
io.sf.carte.echosvg.css.engine.value.LexicalValue
io.sf.carte.echosvg.css.engine.value.PendingValue
- All Implemented Interfaces:
io.sf.carte.doc.style.css.CSSValue
,CSSVal
,Value
,Serializable
,Cloneable
,CSSStyleValue
A value meaning that a longhand property is pending the PROXY substitution of
a shorthand value.
- See Also:
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.sf.carte.doc.style.css.CSSValue
io.sf.carte.doc.style.css.CSSValue.CssType, io.sf.carte.doc.style.css.CSSValue.Type
-
Constructor Summary
ConstructorsConstructorDescriptionPendingValue
(String shorthandName, io.sf.carte.doc.style.css.nsac.LexicalUnit lunit) Creates a new PendingValue object. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Create and return a copy of this object.io.sf.carte.doc.style.css.CSSValue.Type
Methods inherited from class io.sf.carte.echosvg.css.engine.value.LexicalValue
getCssValueType, getLexicalUnit
Methods inherited from class io.sf.carte.echosvg.css.engine.value.AbstractValue
createDOMException, equals, getColorValue, getCounterValue, getFloatValue, getIdentifierValue, getLength, getModificationHandler, getRectValue, getStringValue, getURIValue, hashCode, setCssText, setFloatValue, setModificationHandler, toString
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface io.sf.carte.echosvg.css.engine.value.CSSVal
matches, writeCssText
Methods inherited from interface io.sf.carte.doc.style.css.CSSValue
getMinifiedCssText, getMinifiedCssText, isPrimitiveValue
Methods inherited from interface io.sf.carte.echosvg.css.engine.value.Value
getIdentifier, getUnitType, isComponent, isIdentifier, item
-
Constructor Details
-
PendingValue
public PendingValue(String shorthandName, io.sf.carte.doc.style.css.nsac.LexicalUnit lunit) throws IllegalArgumentException Creates a new PendingValue object.- Parameters:
shorthandName
- the shorthand name.lunit
- the lexical unit that is pending substitution.- Throws:
IllegalArgumentException
-
-
Method Details
-
getPrimitiveType
public io.sf.carte.doc.style.css.CSSValue.Type getPrimitiveType()- Specified by:
getPrimitiveType
in interfaceio.sf.carte.doc.style.css.CSSValue
- Overrides:
getPrimitiveType
in classLexicalValue
-
getShorthandName
-
getCssText
- Specified by:
getCssText
in interfaceio.sf.carte.doc.style.css.CSSValue
- Overrides:
getCssText
in classLexicalValue
-
clone
Description copied from interface:Value
Create and return a copy of this object.If this object is unmodifiable, the clone will be modifiable.
-