Class NodeLayoutProperties
- java.lang.Object
-
- org.jfree.layouting.renderer.model.NodeLayoutProperties
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Cloneable
public class NodeLayoutProperties extends java.lang.Object implements java.io.Serializable, java.lang.CloneableA static properties collection. That one is static; once computed it does not change anymore. It does not (under no thinkable circumstances) depend on the given content. It may depend on static content of the parent.- Author:
- Thomas Morgner
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NodeLayoutProperties()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()CSSValuegetAlignmentAdjust()RenderLengthgetAlignmentAdjustResolved()CSSValuegetAlignmentBaseline()CSSValuegetBaselineShift()RenderLengthgetBaselineShiftResolved()intgetMajorAxis()intgetMinorAxis()java.lang.StringgetNamespace()java.lang.StringgetTagName()CSSValuegetVerticalAlignment()voidsetAlignmentAdjust(CSSValue alignmentAdjust)voidsetAlignmentAdjustResolved(RenderLength alignmentAdjustResolved)voidsetAlignmentBaseline(CSSValue alignmentBaseline)voidsetBaselineShift(CSSValue baselineShift)voidsetBaselineShiftResolved(RenderLength baselineShiftResolved)voidsetMajorAxis(int majorAxis)voidsetMinorAxis(int minorAxis)voidsetNamespace(java.lang.String namespace)voidsetTagName(java.lang.String tagName)voidsetVerticalAlignment(CSSValue verticalAlignment)
-
-
-
Method Detail
-
getMajorAxis
public int getMajorAxis()
-
setMajorAxis
public void setMajorAxis(int majorAxis)
-
getMinorAxis
public int getMinorAxis()
-
setMinorAxis
public void setMinorAxis(int minorAxis)
-
clone
public java.lang.Object clone() throws java.lang.CloneNotSupportedException- Overrides:
clonein classjava.lang.Object- Throws:
java.lang.CloneNotSupportedException
-
getAlignmentBaseline
public CSSValue getAlignmentBaseline()
-
setAlignmentBaseline
public void setAlignmentBaseline(CSSValue alignmentBaseline)
-
getAlignmentAdjust
public CSSValue getAlignmentAdjust()
-
setAlignmentAdjust
public void setAlignmentAdjust(CSSValue alignmentAdjust)
-
getBaselineShift
public CSSValue getBaselineShift()
-
setBaselineShift
public void setBaselineShift(CSSValue baselineShift)
-
getVerticalAlignment
public CSSValue getVerticalAlignment()
-
setVerticalAlignment
public void setVerticalAlignment(CSSValue verticalAlignment)
-
getBaselineShiftResolved
public RenderLength getBaselineShiftResolved()
-
setBaselineShiftResolved
public void setBaselineShiftResolved(RenderLength baselineShiftResolved)
-
getAlignmentAdjustResolved
public RenderLength getAlignmentAdjustResolved()
-
setAlignmentAdjustResolved
public void setAlignmentAdjustResolved(RenderLength alignmentAdjustResolved)
-
getNamespace
public java.lang.String getNamespace()
-
setNamespace
public void setNamespace(java.lang.String namespace)
-
getTagName
public java.lang.String getTagName()
-
setTagName
public void setTagName(java.lang.String tagName)
-
-