Java Doc for ShapeGraphicAttribute.java in  » 6.0-JDK-Core » AWT » java » awt » font » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Home
Java Source Code / Java Documentation
1.6.0 JDK Core
2.6.0 JDK Modules
3.6.0 JDK Modules com.sun
4.6.0 JDK Modules com.sun.java
5.6.0 JDK Modules sun
6.6.0 JDK Platform
7.Ajax
8.Apache Harmony Java SE
9.Aspect oriented
10.Authentication Authorization
11.Blogger System
12.Build
13.Byte Code
14.Cache
15.Chart
16.Chat
17.Code Analyzer
18.Collaboration
19.Content Management System
20.Database Client
21.Database DBMS
22.Database JDBC Connection Pool
23.Database ORM
24.Development
25.EJB Server
26.ERP CRM Financial
27.ESB
28.Forum
29.Game
30.GIS
31.Graphic 3D
32.Graphic Library
33.Groupware
34.HTML Parser
35.IDE
36.IDE Eclipse
37.IDE Netbeans
38.Installer
39.Internationalization Localization
40.Inversion of Control
41.Issue Tracking
42.J2EE
43.J2ME
44.JBoss
45.JMS
46.JMX
47.Library
48.Mail Clients
49.Music
50.Net
51.Parser
52.PDF
53.Portal
54.Profiler
55.Project Management
56.Report
57.RSS RDF
58.Rule Engine
59.Science
60.Scripting
61.Search Engine
62.Security
63.Sevlet Container
64.Source Control
65.Swing Library
66.Template Engine
67.Test Coverage
68.Testing
69.UML
70.Web Crawler
71.Web Framework
72.Web Mail
73.Web Server
74.Web Services
75.Web Services apache cxf 2.2.6
76.Web Services AXIS2
77.Wiki Engine
78.Workflow Engines
79.XML
80.XML UI
Java Source Code / Java Documentation » 6.0 JDK Core » AWT » java.awt.font 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   java.awt.font.GraphicAttribute
      java.awt.font.ShapeGraphicAttribute

ShapeGraphicAttribute
final public class ShapeGraphicAttribute extends GraphicAttribute (Code)
The ShapeGraphicAttribute class is an implementation of GraphicAttribute that draws shapes in a TextLayout .
See Also:   GraphicAttribute
See Also:   


Field Summary
final public static  booleanFILL
     A key indicating the shape should be filled.
final public static  booleanSTROKE
     A key indicating the shape should be stroked with a 1-pixel wide stroke.

Constructor Summary
public  ShapeGraphicAttribute(Shape shape, int alignment, boolean stroke)
     Constructs a ShapeGraphicAttribute for the specified Shape .
Parameters:
  shape - the Shape to render.

Method Summary
public  voiddraw(Graphics2D graphics, float x, float y)
    
public  booleanequals(Object rhs)
     Compares this ShapeGraphicAttribute to the specified Object.
public  booleanequals(ShapeGraphicAttribute rhs)
     Compares this ShapeGraphicAttribute to the specified ShapeGraphicAttribute.
public  floatgetAdvance()
     Returns the advance of this ShapeGraphicAttribute.
public  floatgetAscent()
     Returns the ascent of this ShapeGraphicAttribute.
public  Rectangle2DgetBounds()
     Returns a Rectangle2D that encloses all of the bits drawn by this ShapeGraphicAttribute relative to the rendering position.
public  floatgetDescent()
     Returns the descent of this ShapeGraphicAttribute.
public  ShapegetOutline(AffineTransform tx)
     Return a java.awt.Shape that represents the region that this ShapeGraphicAttribute renders.
public  inthashCode()
     Returns a hashcode for this ShapeGraphicAttribute.

Field Detail
FILL
final public static boolean FILL(Code)
A key indicating the shape should be filled.



STROKE
final public static boolean STROKE(Code)
A key indicating the shape should be stroked with a 1-pixel wide stroke.




Constructor Detail
ShapeGraphicAttribute
public ShapeGraphicAttribute(Shape shape, int alignment, boolean stroke)(Code)
Constructs a ShapeGraphicAttribute for the specified Shape .
Parameters:
  shape - the Shape to render. The Shape is rendered with its origin at the origin ofthis ShapeGraphicAttribute in thehost TextLayout. This object maintains a reference toshape.
Parameters:
  alignment - one of the alignments from thisShapeGraphicAttribute.
Parameters:
  stroke - true if the Shape should bestroked; false if the Shape should befilled.




Method Detail
draw
public void draw(Graphics2D graphics, float x, float y)(Code)



equals
public boolean equals(Object rhs)(Code)
Compares this ShapeGraphicAttribute to the specified Object.
Parameters:
  rhs - the Object to compare for equality true if thisShapeGraphicAttribute equals rhs;false otherwise.



equals
public boolean equals(ShapeGraphicAttribute rhs)(Code)
Compares this ShapeGraphicAttribute to the specified ShapeGraphicAttribute.
Parameters:
  rhs - the ShapeGraphicAttribute to compare forequality true if thisShapeGraphicAttribute equals rhs;false otherwise.



getAdvance
public float getAdvance()(Code)
Returns the advance of this ShapeGraphicAttribute. The advance of a ShapeGraphicAttribute is the distance from the origin of its Shape to the right side of the bounds of its Shape. the advance of this ShapeGraphicAttribute.



getAscent
public float getAscent()(Code)
Returns the ascent of this ShapeGraphicAttribute. The ascent of a ShapeGraphicAttribute is the positive distance from the origin of its Shape to the top of bounds of its Shape. the ascent of this ShapeGraphicAttribute.



getBounds
public Rectangle2D getBounds()(Code)
Returns a Rectangle2D that encloses all of the bits drawn by this ShapeGraphicAttribute relative 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. a Rectangle2D that encloses all of the bitsrendered by this ShapeGraphicAttribute.



getDescent
public float getDescent()(Code)
Returns the descent of this ShapeGraphicAttribute. The descent of a ShapeGraphicAttribute is the distance from the origin of its Shape to the bottom of the bounds of its Shape. the descent of this ShapeGraphicAttribute.



getOutline
public Shape getOutline(AffineTransform tx)(Code)
Return a java.awt.Shape that represents the region that this ShapeGraphicAttribute renders. This is used when a TextLayout is requested to return the outline of the text. The (untransformed) shape must not extend outside the rectangular bounds returned by getBounds.
Parameters:
  tx - an optional AffineTransform to apply to thethis ShapeGraphicAttribute. This can be null. the Shape representing this graphic attribute,suitable for stroking or filling.
since:
   1.6



hashCode
public int hashCode()(Code)
Returns a hashcode for this ShapeGraphicAttribute. a hash code value for thisShapeGraphicAttribute.



Fields inherited from java.awt.font.GraphicAttribute
final public static int BOTTOM_ALIGNMENT(Code)(Java Doc)
final public static int CENTER_BASELINE(Code)(Java Doc)
final public static int HANGING_BASELINE(Code)(Java Doc)
final public static int ROMAN_BASELINE(Code)(Java Doc)
final public static int TOP_ALIGNMENT(Code)(Java Doc)

Methods inherited from java.awt.font.GraphicAttribute
abstract public void draw(Graphics2D graphics, float x, float y)(Code)(Java Doc)
abstract public float getAdvance()(Code)(Java Doc)
final public int getAlignment()(Code)(Java Doc)
abstract public float getAscent()(Code)(Java Doc)
public Rectangle2D getBounds()(Code)(Java Doc)
abstract public float getDescent()(Code)(Java Doc)
public GlyphJustificationInfo getJustificationInfo()(Code)(Java Doc)
public Shape getOutline(AffineTransform tx)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.