Java Doc for GlyphProxy.java in  » 6.0-JDK-Modules » j2me » com » sun » perseus » model » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » j2me » com.sun.perseus.model 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   com.sun.perseus.model.GlyphProxy

GlyphProxy
final public class GlyphProxy (Code)
A GlyphNodeProxy delegates its rendering to a proxied Glyph object.
version:
   $Id: GlyphProxy.java,v 1.10 2006/06/29 10:47:31 ln156897 Exp $


Field Summary
protected  GlyphProxynextSibling
     The next GlyphProxy sibling.
protected  GlyphProxyprevSibling
     The previous GlyphProxy sibling.
protected  Glyphproxied
     The proxied glyph.
protected  floatrotate
    
protected  floatx
     The origin of the glyph on the x axis.

Constructor Summary
public  GlyphProxy(Glyph proxied)
    
Parameters:
  proxied - Glyph node to proxy.

Method Summary
 BoxaddNodeBBox(Box bbox, Transform t)
    
Parameters:
  bbox - the bounding box to which this node's bounding box should beappended.
protected  TileaddRenderingTile(Tile tile, TextRenderingProperties trp, Transform t)
     Adds this glyph's bounds to the input tile.
protected  voidapplyInverseTransform(Transform tx)
     Apply this node inverse additional transform.
protected  voidapplyTransform(Transform tx)
     Apply this node's x/y translation.
public  floatgetRotate()
    
public  floatgetX()
    
protected  booleanisHit(float[] pt, TextRenderingProperties trp)
    
Parameters:
  pt - the x/y coordinate.
public  voidsetRotate(float newRotate)
    
public  voidsetX(float newX)
    
public  StringtoString()
    

Field Detail
nextSibling
protected GlyphProxy nextSibling(Code)
The next GlyphProxy sibling.



prevSibling
protected GlyphProxy prevSibling(Code)
The previous GlyphProxy sibling.



proxied
protected Glyph proxied(Code)
The proxied glyph.



rotate
protected float rotate(Code)
The glyph's rotation



x
protected float x(Code)
The origin of the glyph on the x axis.




Constructor Detail
GlyphProxy
public GlyphProxy(Glyph proxied)(Code)

Parameters:
  proxied - Glyph node to proxy. Should notbe null.




Method Detail
addNodeBBox
Box addNodeBBox(Box bbox, Transform t)(Code)

Parameters:
  bbox - the bounding box to which this node's bounding box should beappended. That bounding box is in the target coordinate space. It may be null, in which case this node should create a new one.
Parameters:
  t - the transform from the node coordinate system to the coordinatesystem into which the bounds should be computed. the bounding box of this node, in the target coordinate space,



addRenderingTile
protected Tile addRenderingTile(Tile tile, TextRenderingProperties trp, Transform t)(Code)
Adds this glyph's bounds to the input tile. If the input tile.
Parameters:
  tile - the Tile instance whose bounds should be set.
Parameters:
  trp - the TextRenderingProperties describing the nodes rendering characteristics.
Parameters:
  t - the Transform to the requested tile space, from this node's userspace. the expanded tile.



applyInverseTransform
protected void applyInverseTransform(Transform tx)(Code)
Apply this node inverse additional transform.
Parameters:
  tx - the Transform to add node transform to.This is guaranteed to be not null.



applyTransform
protected void applyTransform(Transform tx)(Code)
Apply this node's x/y translation.
Parameters:
  tx - the Transform to add node transform to.This is guaranteed to be not null.



getRotate
public float getRotate()(Code)
this node's rotation



getX
public float getX()(Code)
this node's origin on the x-axis



isHit
protected boolean isHit(float[] pt, TextRenderingProperties trp)(Code)

Parameters:
  pt - the x/y coordinate. Should never be null and beof size two. If not, the behavior is unspecified. The pointshould be in user space.
Parameters:
  trp - the TextRenderingProperties containing the propertiesapplicable to the hit detection operation. This is usedbecause the same node may be referenced multiple timesby different proxies. true if this node is hit by the input point. The input pointis in viewport space. This is invoked in the hit detectionprocess after the node's properties have been applied and the display value has been checked (i.e., the node is actually rendered).
See Also:   GlyphProxy.nodeHitAt



setRotate
public void setRotate(float newRotate)(Code)

Parameters:
  newRotate - the new glyph rotation



setX
public void setX(float newX)(Code)

Parameters:
  newX - the new origin on the x-axis



toString
public String toString()(Code)
a string description of this ElementNodeProxy



Methods inherited from java.lang.Object
public boolean equals(Object obj)(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.