Package org.apache.fop.fo.properties
Class LengthProperty
- java.lang.Object
-
- org.apache.fop.fo.properties.Property
-
- org.apache.fop.fo.properties.LengthProperty
-
- Direct Known Subclasses:
EnumLength,FixedLength,PercentLength,TableColLength
public abstract class LengthProperty extends Property implements Length, Numeric
Superclass for properties wrapping a Length value.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLengthProperty.MakerInner class for making instances of LengthProperty
-
Constructor Summary
Constructors Constructor Description LengthProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetDimension()Return the dimension of this numeric.LengthgetLength()This method expects to be overridden by subclassesNumericgetNumeric()This method expects to be overridden by subclassesjava.lang.ObjectgetObject()This method expects to be overridden by subclasses-
Methods inherited from class org.apache.fop.fo.properties.Property
getCharacter, getColor, getCondLength, getEnum, getKeep, getLengthPair, getLengthRange, getList, getNCname, getNumber, getSpace, getSpecifiedValue, getString, isAuto, setSpecifiedValue, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.fop.datatypes.Numeric
getEnum, getNumericValue, getNumericValue, isAbsolute
-
-
-
-
Method Detail
-
getDimension
public int getDimension()
Description copied from interface:NumericReturn the dimension of this numeric. Plain numbers has a dimension of 0 and length has a dimension of 1. Other dimension can occur as a result of multiplications and divisions.- Specified by:
getDimensionin interfaceNumeric- Returns:
- the numeric dimension. Length always a dimension of 1
-
getNumeric
public Numeric getNumeric()
Description copied from class:PropertyThis method expects to be overridden by subclasses- Overrides:
getNumericin classProperty- Returns:
- this.length cast as a Numeric
-
getLength
public Length getLength()
Description copied from class:PropertyThis method expects to be overridden by subclasses
-
-