java.lang.Object
java.awt.font.GraphicAttribute
java.awt.font.ShapeGraphicAttribute
public final class ShapeGraphicAttribute extends GraphicAttribute
The 
ShapeGraphicAttribute class is an implementation of
 GraphicAttribute that draws shapes in a TextLayout.- See Also:
- GraphicAttribute
- 
Field SummaryFields Modifier and Type Field Description static booleanFILLA key indicating the shape should be filled.static booleanSTROKEA key indicating the shape should be stroked with a 1-pixel wide stroke.Fields declared in class java.awt.font.GraphicAttributeBOTTOM_ALIGNMENT, CENTER_BASELINE, HANGING_BASELINE, ROMAN_BASELINE, TOP_ALIGNMENT
- 
Constructor SummaryConstructors Constructor Description ShapeGraphicAttribute(Shape shape, int alignment, boolean stroke)Constructs aShapeGraphicAttributefor the specifiedShape.
- 
Method SummaryModifier and Type Method Description booleanequals(ShapeGraphicAttribute rhs)Compares thisShapeGraphicAttributeto the specifiedShapeGraphicAttribute.booleanequals(Object rhs)Compares thisShapeGraphicAttributeto the specifiedObject.floatgetAdvance()Returns the advance of thisShapeGraphicAttribute.floatgetAscent()Returns the ascent of thisShapeGraphicAttribute.Rectangle2DgetBounds()Returns aRectangle2Dthat encloses all of the bits drawn by thisShapeGraphicAttributerelative to the rendering position.floatgetDescent()Returns the descent of thisShapeGraphicAttribute.ShapegetOutline(AffineTransform tx)Return aShapethat represents the region that thisShapeGraphicAttributerenders.inthashCode()Returns a hashcode for thisShapeGraphicAttribute.
- 
Field Details- 
STROKEpublic static final boolean STROKEA key indicating the shape should be stroked with a 1-pixel wide stroke.- See Also:
- Constant Field Values
 
- 
FILLpublic static final boolean FILLA key indicating the shape should be filled.- See Also:
- Constant Field Values
 
 
- 
- 
Constructor Details- 
ShapeGraphicAttributeConstructs aShapeGraphicAttributefor the specifiedShape.- Parameters:
- shape- the- Shapeto render. The- Shapeis rendered with its origin at the origin of this- ShapeGraphicAttributein the host- TextLayout. This object maintains a reference to- shape.
- alignment- one of the alignments from this- ShapeGraphicAttribute.
- stroke-- trueif the- Shapeshould be stroked;- falseif the- Shapeshould be filled.
 
 
- 
- 
Method Details- 
getAscentpublic float getAscent()Returns the ascent of thisShapeGraphicAttribute. The ascent of aShapeGraphicAttributeis the positive distance from the origin of itsShapeto the top of bounds of itsShape.- Specified by:
- getAscentin class- GraphicAttribute
- Returns:
- the ascent of this ShapeGraphicAttribute.
- See Also:
- GraphicAttribute.getBounds()
 
- 
getDescentpublic float getDescent()Returns the descent of thisShapeGraphicAttribute. The descent of aShapeGraphicAttributeis the distance from the origin of itsShapeto the bottom of the bounds of itsShape.- Specified by:
- getDescentin class- GraphicAttribute
- Returns:
- the descent of this ShapeGraphicAttribute.
- See Also:
- GraphicAttribute.getBounds()
 
- 
getAdvancepublic float getAdvance()Returns the advance of thisShapeGraphicAttribute. The advance of aShapeGraphicAttributeis the distance from the origin of itsShapeto the right side of the bounds of itsShape.- Specified by:
- getAdvancein class- GraphicAttribute
- Returns:
- the advance of this ShapeGraphicAttribute.
- See Also:
- GraphicAttribute.getBounds()
 
- 
getBoundsReturns aRectangle2Dthat encloses all of the bits drawn by thisShapeGraphicAttributerelative to the rendering position. A graphic can be rendered beyond its origin, ascent, descent, or advance; but if it does, this method's implementation should indicate where the graphic is rendered.- Overrides:
- getBoundsin class- GraphicAttribute
- Returns:
- a Rectangle2Dthat encloses all of the bits rendered by thisShapeGraphicAttribute.
 
- 
getOutlineReturn aShapethat represents the region that thisShapeGraphicAttributerenders. This is used when aTextLayoutis requested to return the outline of the text. The (untransformed) shape must not extend outside the rectangular bounds returned bygetBounds.- Overrides:
- getOutlinein class- GraphicAttribute
- Parameters:
- tx- an optional- AffineTransformto apply to the this- ShapeGraphicAttribute. This can be null.
- Returns:
- the Shaperepresenting this graphic attribute, suitable for stroking or filling.
- Since:
- 1.6
 
- 
hashCodepublic int hashCode()Returns a hashcode for thisShapeGraphicAttribute.- Overrides:
- hashCodein class- Object
- Returns:
- a hash code value for this
 ShapeGraphicAttribute.
- See Also:
- Object.equals(java.lang.Object),- System.identityHashCode(java.lang.Object)
 
- 
equalsCompares thisShapeGraphicAttributeto the specifiedObject.- Overrides:
- equalsin class- Object
- Parameters:
- rhs- the- Objectto compare for equality
- Returns:
- trueif this- ShapeGraphicAttributeequals- rhs;- falseotherwise.
- See Also:
- Object.hashCode(),- HashMap
 
- 
equalsCompares thisShapeGraphicAttributeto the specifiedShapeGraphicAttribute.- Parameters:
- rhs- the- ShapeGraphicAttributeto compare for equality
- Returns:
- trueif this- ShapeGraphicAttributeequals- rhs;- falseotherwise.
 
 
-