Class FontSizeAdjustManager
- java.lang.Object
-
- org.apache.batik.css.engine.value.AbstractValueFactory
-
- org.apache.batik.css.engine.value.AbstractValueManager
-
- org.apache.batik.css.engine.value.css2.FontSizeAdjustManager
-
- All Implemented Interfaces:
ValueManager
public class FontSizeAdjustManager extends AbstractValueManager
This class provides a manager for the 'font-size-adjust' property values.- Version:
- $Id: FontSizeAdjustManager.java 1733416 2016-03-03 07:07:13Z gadams $
-
-
Constructor Summary
Constructors Constructor Description FontSizeAdjustManager()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ValuecreateFloatValue(short type, float floatValue)ImplementsValueManager.createFloatValue(short,float).ValuecreateStringValue(short type, java.lang.String value, CSSEngine engine)ValuecreateValue(org.w3c.css.sac.LexicalUnit lu, CSSEngine engine)ImplementsValueManager.createValue(LexicalUnit,CSSEngine).ValuegetDefaultValue()ImplementsValueManager.getDefaultValue().java.lang.StringgetPropertyName()ImplementsValueManager.getPropertyName().intgetPropertyType()ImplementsValueManager.getPropertyType().booleanisAdditiveProperty()ImplementsValueManager.isAdditiveProperty().booleanisAnimatableProperty()ImplementsValueManager.isAnimatableProperty().booleanisInheritedProperty()ImplementsValueManager.isInheritedProperty().-
Methods inherited from class org.apache.batik.css.engine.value.AbstractValueManager
computeValue
-
Methods inherited from class org.apache.batik.css.engine.value.AbstractValueFactory
createDOMException, createInvalidFloatTypeDOMException, createInvalidFloatValueDOMException, createInvalidIdentifierDOMException, createInvalidLexicalUnitDOMException, createInvalidStringTypeDOMException, createMalformedLexicalUnitDOMException, resolveURI
-
-
-
-
Method Detail
-
isInheritedProperty
public boolean isInheritedProperty()
ImplementsValueManager.isInheritedProperty().
-
isAnimatableProperty
public boolean isAnimatableProperty()
ImplementsValueManager.isAnimatableProperty().
-
isAdditiveProperty
public boolean isAdditiveProperty()
ImplementsValueManager.isAdditiveProperty().
-
getPropertyType
public int getPropertyType()
ImplementsValueManager.getPropertyType().
-
getPropertyName
public java.lang.String getPropertyName()
ImplementsValueManager.getPropertyName().- Specified by:
getPropertyNamein interfaceValueManager- Specified by:
getPropertyNamein classAbstractValueFactory
-
getDefaultValue
public Value getDefaultValue()
ImplementsValueManager.getDefaultValue().
-
createValue
public Value createValue(org.w3c.css.sac.LexicalUnit lu, CSSEngine engine) throws org.w3c.dom.DOMException
ImplementsValueManager.createValue(LexicalUnit,CSSEngine).- Parameters:
lu- The SAC lexical unit used to create the value.engine- The calling CSSEngine.- Throws:
org.w3c.dom.DOMException
-
createStringValue
public Value createStringValue(short type, java.lang.String value, CSSEngine engine) throws org.w3c.dom.DOMException
- Specified by:
createStringValuein interfaceValueManager- Overrides:
createStringValuein classAbstractValueManager- Parameters:
type- A string code as defined in CSSPrimitiveValue. The string code can only be a string unit type.value- The new string value.engine- The CSS engine.- Throws:
org.w3c.dom.DOMException
-
createFloatValue
public Value createFloatValue(short type, float floatValue) throws org.w3c.dom.DOMException
ImplementsValueManager.createFloatValue(short,float).- Specified by:
createFloatValuein interfaceValueManager- Overrides:
createFloatValuein classAbstractValueManager- Parameters:
type- A unit code as defined above. The unit code can only be a float unit typefloatValue- The new float value.- Throws:
org.w3c.dom.DOMException
-
-