Java Doc for Animation.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.ModelNode
      com.sun.perseus.model.CompositeNode
         com.sun.perseus.model.ElementNode
            com.sun.perseus.model.TimedElementNode
               com.sun.perseus.model.Animation

All known Subclasses:   com.sun.perseus.model.Set,  com.sun.perseus.model.AbstractAnimate,
Animation
abstract public class Animation extends TimedElementNode implements BaseValue,IDRef(Code)
The Animation class is the base class for all the SVG animation elements. Note that this is not the base class for media elements such as <audio> or <video>. The Animation class is the abstraction manipulated by TraitAnim to compose the chain of currently active animations in priority order.
version:
   $Id: Animation.java,v 1.5 2006/06/29 10:47:29 ln156897 Exp $


Field Summary
final public static  intTYPE_GENERIC
     Constant used by default to identify the type of animation values.
 BaseValuebaseVal
     This animation's base value, if it needs a base value.
 booleanhasNoEffect
     Controls whether the animation has an effect on its target or not.
 StringidRef
     The identifier of the target animation element.
 ElementNodetargetElement
     This animation's target element.
 TraitAnimtraitAnim
    
 StringtraitName
     This animation's target trait name.
 StringtraitNamespace
     This animation's target trait namespace.
 inttype
     The type of animation.

Constructor Summary
public  Animation(DocumentNode ownerDocument, String localName)
     Builds a new animation element that belongs to the given document.

Method Summary
public  voidactivate()
     Should be called when the animation is the target of an hyperlink.
final  Object[]compute()
     Computes the animation value for the current animation's simple time.
public  voiddispatchEvent(ModelEvent evt)
     Event dispatching override, to capture begin and end events.
abstract  Object[]f(long t)
     This is the animation function, the heart of the animation engine.
public  Object[]getBaseValue()
     Returns the BaseValue as an array of objects. the base value as an object array.
public  StringgetIdRef()
    
public  StringgetTraitNSImpl(String namespaceURI, String name)
    
final  voidnodeHookedInDocumentTree()
     When an Animation is hooked into the document tree, it needs to validate (only if the Document is loaded).
final  voidnodeUnhookedFromDocumentTree()
     When an Animation is removed from the document tree, it needs to remove itself from its associated traitAnim.
public  voidresolveTo(ElementNode ref)
     IDRef implementation.
public  voidsetIdRef(String idRef)
    
public  voidsetTraitNSImpl(String namespaceURI, String name, String value)
     Set supports the xlink:href trait.
 booleansupportsTraitNS(String namespaceURI, String traitName)
     Supported NS traits: xlink:href
Parameters:
  namespaceURI - the trait's namespace.
Parameters:
  traitName - the name of the trait which the element may support.
abstract  voidvalidate()
     This method can be overridden by specific implementations to validate that the various values attributes (values, to, from, by or any subset of these) are valid i.e., compatible with the target element and target trait. There are two situations when this method is called: - parse time.

Field Detail
TYPE_GENERIC
final public static int TYPE_GENERIC(Code)
Constant used by default to identify the type of animation values. Derived classes, such as AnimateTransform, may use other values.



baseVal
BaseValue baseVal(Code)
This animation's base value, if it needs a base value. The base value is needed in some scenarios, for example in the case of 'to-animations'.



hasNoEffect
boolean hasNoEffect(Code)
Controls whether the animation has an effect on its target or not. There are situations where the animation may have no effect, for example when none of the values/to/from/by attributes are specified on an or .



idRef
String idRef(Code)
The identifier of the target animation element.



targetElement
ElementNode targetElement(Code)
This animation's target element.



traitAnim
TraitAnim traitAnim(Code)
The associated TraitAnim



traitName
String traitName(Code)
This animation's target trait name.



traitNamespace
String traitNamespace(Code)
This animation's target trait namespace.



type
int type(Code)
The type of animation.




Constructor Detail
Animation
public Animation(DocumentNode ownerDocument, String localName)(Code)
Builds a new animation element that belongs to the given document. This Animation will belong to the DocumentNode's time container.
Parameters:
  ownerDocument - the document this node belongs to.
Parameters:
  localName - the element's local name
throws:
  IllegalArgumentException - if the input ownerDocument is null




Method Detail
activate
public void activate()(Code)
Should be called when the animation is the target of an hyperlink.



compute
final Object[] compute()(Code)
Computes the animation value for the current animation's simple time. the current animation value.



dispatchEvent
public void dispatchEvent(ModelEvent evt)(Code)
Event dispatching override, to capture begin and end events. When a begin event occurs, the animation adds itself to the target element and trait's TraitAnim. When an end event occurs, the animation removes itself from the target element and trait's TraitAnim if the animation is not in the frozen state.
Parameters:
  evt - the event that occured



f
abstract Object[] f(long t)(Code)
This is the animation function, the heart of the animation engine. There are multiple implementations of that function, and no good default one, so this method is abstract.
Parameters:
  t - the animation's simple time.



getBaseValue
public Object[] getBaseValue()(Code)
Returns the BaseValue as an array of objects. the base value as an object array. The dimensions of thereturned array depend on the trait.
See Also:   com.sun.perseus.model.BaseValue



getIdRef
public String getIdRef()(Code)
the Use element's idRef.



getTraitNSImpl
public String getTraitNSImpl(String namespaceURI, String name) throws DOMException(Code)
Set handles the xlink href attribute
Parameters:
  namespaceURI - the requested trait's namespace URI.
Parameters:
  name - the requested trait's local name (i.e., un-prefixed, as "href") the requested trait's string value.
throws:
  DOMException - with error code NOT_SUPPORTED_ERROR if the requestedtrait is not supported on this element or null.
throws:
  DOMException - with error code TYPE_MISMATCH_ERR if requestedtrait's computed value cannot be converted to a String (SVG Tiny only).
throws:
  SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content.



nodeHookedInDocumentTree
final void nodeHookedInDocumentTree()(Code)
When an Animation is hooked into the document tree, it needs to validate (only if the Document is loaded).



nodeUnhookedFromDocumentTree
final void nodeUnhookedFromDocumentTree()(Code)
When an Animation is removed from the document tree, it needs to remove itself from its associated traitAnim.



resolveTo
public void resolveTo(ElementNode ref)(Code)
IDRef implementation.
Parameters:
  ref - the resolved reference (mapped from theid passed to the setIdRef method).



setIdRef
public void setIdRef(String idRef)(Code)
Sets this Animation targetElement's idRef
Parameters:
  idRef - the identifier of the animation's target element.Should not be null



setTraitNSImpl
public void setTraitNSImpl(String namespaceURI, String name, String value) throws DOMException(Code)
Set supports the xlink:href trait.
Parameters:
  namespaceURI - the trait's namespace.
Parameters:
  name - the trait's local name (un-prefixed, e.g., "href");
Parameters:
  value - the new trait value (e.g., "http://www.sun.com/mypng.png")
throws:
  DOMException - with error code NOT_SUPPORTED_ERROR if the requestedtrait is not supported on this element or null.
throws:
  DOMException - with error code TYPE_MISMATCH_ERR if the requestedtrait's value cannot be specified as a String
throws:
  DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is an invalid value for the given trait or null.
throws:
  DOMException - with error code NO_MODIFICATION_ALLOWED_ERR: ifattempt is made to change readonly trait.
throws:
  SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content.



supportsTraitNS
boolean supportsTraitNS(String namespaceURI, String traitName)(Code)
Supported NS traits: xlink:href
Parameters:
  namespaceURI - the trait's namespace.
Parameters:
  traitName - the name of the trait which the element may support. true if this element supports the given trait in one of thetrait accessor methods.



validate
abstract void validate()(Code)
This method can be overridden by specific implementations to validate that the various values attributes (values, to, from, by or any subset of these) are valid i.e., compatible with the target element and target trait. There are two situations when this method is called: - parse time. When the document has been fully loaded, it validates all animations. - run time. When a new animation is created, it validates itself when it is hooked into the tree (i.e., when its parent node is set).



Fields inherited from com.sun.perseus.model.TimedElementNode
protected String localName(Code)(Java Doc)
protected TimedElementSupport timedElementSupport(Code)(Java Doc)

Methods inherited from com.sun.perseus.model.TimedElementNode
public void beginElement()(Code)(Java Doc)
public void beginElementAt(float offset)(Code)(Java Doc)
public void endElement()(Code)(Java Doc)
public void endElementAt(float offset)(Code)(Java Doc)
public String[][] getDefaultTraits()(Code)(Java Doc)
public boolean getElementPaused()(Code)(Java Doc)
public String getLocalName()(Code)(Java Doc)
public TimedElementSupport getTimedElementSupport()(Code)(Java Doc)
public String getTraitImpl(String name) throws DOMException(Code)(Java Doc)
public ElementNode newInstance(DocumentNode doc)(Code)(Java Doc)
void nodeHookedInDocumentTree()(Code)(Java Doc)
void nodeUnhookedFromDocumentTree()(Code)(Java Doc)
protected void parseTimeConditionsTrait(String traitName, String value, boolean isBegin) throws DOMException(Code)(Java Doc)
public void pauseElement()(Code)(Java Doc)
public void setTraitImpl(String name, String value) throws DOMException(Code)(Java Doc)
boolean supportsTrait(String traitName)(Code)(Java Doc)
public void unpauseElement()(Code)(Java Doc)

Fields inherited from com.sun.perseus.model.ElementNode
final public static int CONDITIONAl_ATTRIBUTES_LENGTH(Code)(Java Doc)
final static String NULL_NS(Code)(Java Doc)
final public static int REQUIRED_EXTENSIONS_INDEX(Code)(Java Doc)
final public static int REQUIRED_FEATURES_INDEX(Code)(Java Doc)
final public static int SYSTEM_LANGUAGE_INDEX(Code)(Java Doc)
final static String TRAIT_TYPE_FLOAT(Code)(Java Doc)
final static String TRAIT_TYPE_STRING(Code)(Java Doc)
final static String TRAIT_TYPE_SVG_MATRIX(Code)(Java Doc)
final static String TRAIT_TYPE_SVG_PATH(Code)(Java Doc)
final static String TRAIT_TYPE_SVG_RECT(Code)(Java Doc)
final static String TRAIT_TYPE_SVG_RGB_COLOR(Code)(Java Doc)
final public static int XML_SPACE_DEFAULT(Code)(Java Doc)
final public static int XML_SPACE_INHERIT(Code)(Java Doc)
final public static int XML_SPACE_PRESERVE(Code)(Java Doc)
protected boolean buildingProxy(Code)(Java Doc)
protected String[][] conditionalAttributes(Code)(Java Doc)
protected ElementNodeProxy firstProxy(Code)(Java Doc)
protected String id(Code)(Java Doc)
protected ElementNodeProxy lastProxy(Code)(Java Doc)
protected boolean paintNeedsLoad(Code)(Java Doc)
protected Hashtable traitAnimsNS(Code)(Java Doc)
protected String uriBase(Code)(Java Doc)
protected int xmlSpace(Code)(Java Doc)

Methods inherited from com.sun.perseus.model.ElementNode
public void add(ElementNode element)(Code)(Java Doc)
protected void addProxy(ElementNodeProxy proxy)(Code)(Java Doc)
protected static String alignToStringTrait(int align)(Code)(Java Doc)
protected DOMException animationError(String targetId, String traitNamespace, String traitName, String targetNamespace, String targetName, String animationId, String animationNamespace, String animationLocalName, String errorDescription)(Code)(Java Doc)
public void appendTextChild(String text)(Code)(Java Doc)
protected ElementNodeProxy buildExpandedProxy()(Code)(Java Doc)
ElementNodeProxy buildProxy()(Code)(Java Doc)
final void checkNCName(String name) throws DOMException(Code)(Java Doc)
protected void checkPositive(String name, float value)(Code)(Java Doc)
protected void checkWriteLoading(String name) throws DOMException(Code)(Java Doc)
final boolean conditionEquals(int index, String[] conditionValue)(Code)(Java Doc)
TraitAnim createTraitAnimImpl(String traitName)(Code)(Java Doc)
TraitAnim createTraitAnimNS(String traitNamespace, String traitName)(Code)(Java Doc)
TraitAnim createTraitAnimNSImpl(String traitNamespace, String traitName)(Code)(Java Doc)
public static boolean equal(Object objA, Object objB)(Code)(Java Doc)
public static boolean equal(float[] faa, float[] fab)(Code)(Java Doc)
public static boolean equal(String[] saa, String[] sab)(Code)(Java Doc)
public static boolean equal(int[][] iaa, int[][] iab)(Code)(Java Doc)
public static boolean equal(float[][] faa, float[][] fab)(Code)(Java Doc)
protected String fontStylesToStringTrait(int styles)(Code)(Java Doc)
protected String fontWeightsToStringTrait(int weight)(Code)(Java Doc)
final public String getAttribute(String name) throws DOMException(Code)(Java Doc)
final public String getAttributeNS(String namespaceURI, String name) throws DOMException(Code)(Java Doc)
String[] getConditionalAttribute(int index)(Code)(Java Doc)
public String[][] getDefaultTraits()(Code)(Java Doc)
public ModelNode getFirstComputedExpandedChild()(Code)(Java Doc)
public Element getFirstElementChild()(Code)(Java Doc)
ModelNode getFirstExpandedChild()(Code)(Java Doc)
final public float getFloatTrait(String name) throws DOMException(Code)(Java Doc)
float getFloatTraitImpl(String name)(Code)(Java Doc)
public String getId()(Code)(Java Doc)
public Element getLastElementChild()(Code)(Java Doc)
ModelNode getLastExpandedChild()(Code)(Java Doc)
final public SVGMatrix getMatrixTrait(String name) throws DOMException(Code)(Java Doc)
SVGMatrix getMatrixTraitImpl(String name) throws DOMException(Code)(Java Doc)
public String getNamespaceURI()(Code)(Java Doc)
public Element getNextElementSibling()(Code)(Java Doc)
public boolean getPaintNeedsLoad()(Code)(Java Doc)
public Node getParentNode()(Code)(Java Doc)
final public SVGPath getPathTrait(String name) throws DOMException(Code)(Java Doc)
SVGPath getPathTraitImpl(String name) throws DOMException(Code)(Java Doc)
public Element getPreviousElementSibling()(Code)(Java Doc)
final public SVGRGBColor getRGBColorTrait(String name) throws DOMException(Code)(Java Doc)
SVGRGBColor getRGBColorTraitImpl(String name) throws DOMException(Code)(Java Doc)
final public SVGRect getRectTrait(String name) throws DOMException(Code)(Java Doc)
SVGRect getRectTraitImpl(String name) throws DOMException(Code)(Java Doc)
public String[] getRequiredExtensions()(Code)(Java Doc)
public String[] getRequiredFeatures()(Code)(Java Doc)
public String[] getRequiredTraits()(Code)(Java Doc)
public String[][] getRequiredTraitsNS()(Code)(Java Doc)
TraitAnim getSafeTraitAnimNS(String traitNamespace, String traitName)(Code)(Java Doc)
String getSpecifiedTraitImpl(String traitName) throws DOMException(Code)(Java Doc)
String getSpecifiedTraitNSImpl(String traitNamespace, String traitName) throws DOMException(Code)(Java Doc)
public String[] getSystemLanguage()(Code)(Java Doc)
final public String getTrait(String traitName) throws DOMException(Code)(Java Doc)
public String[][] getTraitAliases()(Code)(Java Doc)
TraitAnim getTraitAnimNS(String traitNamespace, String traitName)(Code)(Java Doc)
public String getTraitImpl(String name) throws DOMException(Code)(Java Doc)
final public String getTraitNS(String namespaceURI, String name) throws DOMException(Code)(Java Doc)
String getTraitNSImpl(String namespaceURI, String name)(Code)(Java Doc)
public String getURIBase()(Code)(Java Doc)
public int getXMLSpace()(Code)(Java Doc)
DOMException illegalTraitValue(String name, String value)(Code)(Java Doc)
protected DOMException illegalTraitValue(String name, String namespaceURI, String value)(Code)(Java Doc)
public static String intern(String str)(Code)(Java Doc)
protected void modifiedNode()(Code)(Java Doc)
protected void modifyingNode()(Code)(Java Doc)
abstract public ElementNode newInstance(DocumentNode doc)(Code)(Java Doc)
void nodeHookedInDocumentTree()(Code)(Java Doc)
DOMException notAnimatable(String traitNamespace, String traitName)(Code)(Java Doc)
final protected Time parseClockTrait(String traitName, String value) throws DOMException(Code)(Java Doc)
final protected RGB parseColorTrait(String traitName, String value) throws DOMException(Code)(Java Doc)
final public float[] parseFloatArrayTrait(String traitName, String value) throws DOMException(Code)(Java Doc)
final public float[] parseFloatArrayTrait(String traitName, String value, char sep) throws DOMException(Code)(Java Doc)
final protected float parseFloatTrait(String name, String value) throws DOMException(Code)(Java Doc)
public String[] parseFontFamilyTrait(String name, String value)(Code)(Java Doc)
final public int parseFontStylesTrait(String name, String value)(Code)(Java Doc)
final protected int parseFontWeightsTrait(String name, String value)(Code)(Java Doc)
final protected float parseLengthTrait(String name, String value, boolean isHorizontal) throws DOMException(Code)(Java Doc)
final protected Time parseMinMaxClock(String traitName, String value, boolean isMin) throws DOMException(Code)(Java Doc)
final protected PaintServer parsePaintTrait(String traitName, PaintTarget paintTarget, String value) throws DOMException(Code)(Java Doc)
final protected Path parsePathTrait(String name, String value) throws DOMException(Code)(Java Doc)
final protected Path parsePointsTrait(String name, String value) throws DOMException(Code)(Java Doc)
final protected float[] parsePositiveFloatArrayTrait(String name, String value) throws DOMException(Code)(Java Doc)
final protected float parsePositiveFloatTrait(String name, String value) throws DOMException(Code)(Java Doc)
final protected float parsePositiveLengthTrait(String name, String value, boolean isHorizontal) throws DOMException(Code)(Java Doc)
final protected String[] parseStringArrayTrait(String name, String value, String seperators) throws DOMException(Code)(Java Doc)
final protected Transform parseTransformTrait(String name, String value) throws DOMException(Code)(Java Doc)
final protected int[][] parseUnicodeRangeTrait(String name, String value) throws DOMException(Code)(Java Doc)
protected void preValidate()(Code)(Java Doc)
ModelNode proxyNodeHitAt(float[] pt, ElementNodeProxy proxy)(Code)(Java Doc)
protected DOMException readOnlyTraitError(String name)(Code)(Java Doc)
protected void recomputeProxyTransformState()(Code)(Java Doc)
void removeProxy(ElementNodeProxy proxy)(Code)(Java Doc)
final public void setAttribute(String name, String value) throws DOMException(Code)(Java Doc)
final public void setAttributeNS(String namespaceURI, String name, String value) throws DOMException(Code)(Java Doc)
void setConditionalAttribute(int index, String[] newValue)(Code)(Java Doc)
void setFloatArrayTrait(String name, float[][] value) throws DOMException(Code)(Java Doc)
final public void setFloatTrait(String name, float value) throws DOMException(Code)(Java Doc)
void setFloatTraitImpl(String name, float value)(Code)(Java Doc)
public void setId(String newId)(Code)(Java Doc)
final public void setMatrixTrait(String name, SVGMatrix matrix) throws DOMException(Code)(Java Doc)
void setMatrixTraitImpl(String name, Transform matrix) throws DOMException(Code)(Java Doc)
final public void setPathTrait(String name, SVGPath path) throws DOMException(Code)(Java Doc)
void setPathTraitImpl(String name, SVGPath path) throws DOMException(Code)(Java Doc)
public void setPreferedPaintNeedsLoad(boolean paintNeedsLoad)(Code)(Java Doc)
final public void setRGBColorTrait(String name, SVGRGBColor color) throws DOMException(Code)(Java Doc)
void setRGBColorTraitImpl(String name, SVGRGBColor color) throws DOMException(Code)(Java Doc)
final public void setRectTrait(String name, SVGRect rect) throws DOMException(Code)(Java Doc)
public void setRectTraitImpl(String name, SVGRect rect) throws DOMException(Code)(Java Doc)
public void setRequiredExtensions(String[] newRequiredExtensions)(Code)(Java Doc)
public void setRequiredFeatures(String[] newRequiredFeatures)(Code)(Java Doc)
public void setSystemLanguage(String[] newSystemLanguage)(Code)(Java Doc)
final public void setTrait(String name, String value) throws DOMException(Code)(Java Doc)
public void setTraitImpl(String name, String value) throws DOMException(Code)(Java Doc)
final public void setTraitNS(String namespaceURI, String name, String value) throws DOMException(Code)(Java Doc)
public void setTraitNSImpl(String namespaceURI, String name, String value) throws DOMException(Code)(Java Doc)
public void setURIBase(String newUriBase)(Code)(Java Doc)
public void setXMLSpace(int newXmlSpace)(Code)(Java Doc)
boolean supportsTrait(String traitName)(Code)(Java Doc)
boolean supportsTraitNS(String namespaceURI, String traitName)(Code)(Java Doc)
float[][] toAnimatedFloatArray(float v)(Code)(Java Doc)
float[][] toAnimatedFloatArray(float[] a)(Code)(Java Doc)
float[][] toAnimatedFloatArray(Path path)(Code)(Java Doc)
protected RGB toRGB(String name, float[][] v) throws DOMException(Code)(Java Doc)
protected String toRGBString(String name, float[][] v) throws DOMException(Code)(Java Doc)
protected SVGMatrix toSVGMatrixTrait(Transform transform)(Code)(Java Doc)
protected SVGRGBColor toSVGRGBColor(String traitName, PaintServer paint)(Code)(Java Doc)
protected SVGRect toSVGRect(float[][] viewBox)(Code)(Java Doc)
String toString(PaintServer paintServer)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
String toStringTrait(String traitName, float[][] value)(Code)(Java Doc)
protected String toStringTrait(String[] array)(Code)(Java Doc)
protected String toStringTrait(String[] array, String sep)(Code)(Java Doc)
protected String toStringTrait(float[] array)(Code)(Java Doc)
protected String toStringTrait(float[] array, char sep)(Code)(Java Doc)
protected String toStringTrait(float[][] array)(Code)(Java Doc)
protected static String toStringTrait(Transform transform)(Code)(Java Doc)
protected String toStringTraitQuote(String[] array)(Code)(Java Doc)
float[] toTraitFloatArray(float[][] value)(Code)(Java Doc)
protected float[][] toViewBox(String name, String value) throws DOMException(Code)(Java Doc)
protected void unhookChildrenQuiet()(Code)(Java Doc)
protected void unhookExpandedQuiet()(Code)(Java Doc)
protected String unicodeRangeToStringTrait(int[][] u)(Code)(Java Doc)
protected DOMException unsupportedTrait(String name)(Code)(Java Doc)
protected DOMException unsupportedTraitNS(String name, String namespaceURI)(Code)(Java Doc)
protected DOMException unsupportedTraitType(String name, String type)(Code)(Java Doc)
protected DOMException unsupportedTraitTypeNS(String name, String namespaceURI, String type)(Code)(Java Doc)
float[][] validateFloatArrayTrait(String traitName, String value, String reqNamespaceURI, String reqLocalName, String reqTraitNamespace, String reqTraitName) throws DOMException(Code)(Java Doc)
String validateTraitNS(String namespaceURI, String traitName, String value, String reqNamespaceURI, String reqLocalName, String reqTraitNamespace, String reqTraitName) throws DOMException(Code)(Java Doc)

Fields inherited from com.sun.perseus.model.CompositeNode
protected ElementNode firstChild(Code)(Java Doc)
protected ElementNode lastChild(Code)(Java Doc)

Methods inherited from com.sun.perseus.model.CompositeNode
public void add(ElementNode element)(Code)(Java Doc)
public Node appendChild(Node newChild) throws DOMException(Code)(Java Doc)
protected void clearLayouts()(Code)(Java Doc)
public ModelNode getFirstChildNode()(Code)(Java Doc)
public ModelNode getLastChildNode()(Code)(Java Doc)
abstract public String getLocalName()(Code)(Java Doc)
abstract public String getNamespaceURI()(Code)(Java Doc)
abstract public Node getParentNode()(Code)(Java Doc)
public Node insertBefore(Node newChild, Node refChild) throws DOMException(Code)(Java Doc)
protected boolean isAllowedChild(ElementNode node)(Code)(Java Doc)
final boolean isAncestor(ElementNode node)(Code)(Java Doc)
final boolean isChild(Node node)(Code)(Java Doc)
protected static boolean isIdBranch(ElementNode node)(Code)(Java Doc)
protected boolean isRemoveChildSupported()(Code)(Java Doc)
void nodeHookedInDocumentTree()(Code)(Java Doc)
void nodeUnhookedFromDocumentTree()(Code)(Java Doc)
final void onHookedInDocumentTree()(Code)(Java Doc)
final void onUnhookedFromDocumentTree()(Code)(Java Doc)
public Node removeChild(Node oldChild) throws DOMException(Code)(Java Doc)
protected void unhookChildrenQuiet()(Code)(Java Doc)

Fields inherited from com.sun.perseus.model.ModelNode
final public static int CAN_RENDER_CONDITIONS_MET_BITS(Code)(Java Doc)
final public static int CAN_RENDER_CONDITIONS_MET_MASK(Code)(Java Doc)
final public static int CAN_RENDER_DISPLAY_BIT(Code)(Java Doc)
final public static int CAN_RENDER_DISPLAY_MASK(Code)(Java Doc)
final public static int CAN_RENDER_EMPTY_PATH_BIT(Code)(Java Doc)
final public static int CAN_RENDER_EMPTY_PATH_MASK(Code)(Java Doc)
final public static int CAN_RENDER_EMPTY_VIEWBOX_BIT(Code)(Java Doc)
final public static int CAN_RENDER_EMPTY_VIEWBOX_MASK(Code)(Java Doc)
final public static int CAN_RENDER_IN_DOCUMENT_TREE_BIT(Code)(Java Doc)
final public static int CAN_RENDER_IN_DOCUMENT_TREE_MASK(Code)(Java Doc)
final public static int CAN_RENDER_NON_INVERTIBLE_TXF_BIT(Code)(Java Doc)
final public static int CAN_RENDER_NON_INVERTIBLE_TXF_MASK(Code)(Java Doc)
final public static int CAN_RENDER_PARENT_STATE_BIT(Code)(Java Doc)
final public static int CAN_RENDER_PARENT_STATE_MASK(Code)(Java Doc)
final public static int CAN_RENDER_PROXY_BITS_MASK(Code)(Java Doc)
final public static int CAN_RENDER_RENDERABLE_BIT(Code)(Java Doc)
final public static int CAN_RENDER_RENDERABLE_MASK(Code)(Java Doc)
final public static int CAN_RENDER_REQUIRED_EXTENSIONS_BIT(Code)(Java Doc)
final public static int CAN_RENDER_REQUIRED_EXTENSIONS_MASK(Code)(Java Doc)
final public static int CAN_RENDER_REQUIRED_FEATURES_BIT(Code)(Java Doc)
final public static int CAN_RENDER_REQUIRED_FEATURES_MASK(Code)(Java Doc)
final public static int CAN_RENDER_SYSTEM_LANGUAGE_BIT(Code)(Java Doc)
final public static int CAN_RENDER_SYSTEM_LANGUAGE_MASK(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_FONT_SIZE_BIT(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_FONT_SIZE_MASK(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_HEIGHT_BIT(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_HEIGHT_MASK(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_WIDTH_BIT(Code)(Java Doc)
final public static int CAN_RENDER_ZERO_WIDTH_MASK(Code)(Java Doc)
final protected Transform IDENTITY(Code)(Java Doc)
protected int canRenderState(Code)(Java Doc)
protected boolean loaded(Code)(Java Doc)
protected ModelNode nextSibling(Code)(Java Doc)
protected DocumentNode ownerDocument(Code)(Java Doc)
protected ModelNode parent(Code)(Java Doc)
protected ModelNode prevSibling(Code)(Java Doc)

Methods inherited from com.sun.perseus.model.ModelNode
Box addBBox(Box bbox, Transform t)(Code)(Java Doc)
static Box addBBox(Box bbox, float x, float y, float width, float height)(Code)(Java Doc)
public void addEventListener(String type, EventListener listener, boolean useCapture) throws DOMException(Code)(Java Doc)
Box addNodeBBox(Box bbox, Transform t)(Code)(Java Doc)
static Box addShapeBBox(Box bbox, Path path, Transform t)(Code)(Java Doc)
static Box addTransformedBBox(Box bbox, float x, float y, float width, float height, Transform m)(Code)(Java Doc)
protected Transform appendTransform(Transform tx, Transform workTx)(Code)(Java Doc)
protected void clearLastRenderedTile()(Code)(Java Doc)
abstract protected void clearLayouts()(Code)(Java Doc)
void clearLayouts(ModelNode node)(Code)(Java Doc)
final void computeCanRenderDisplayBit(boolean display)(Code)(Java Doc)
final void computeCanRenderEmptyPathBit(Path path)(Code)(Java Doc)
final void computeCanRenderEmptyViewBoxBit(float[][] viewBox)(Code)(Java Doc)
final void computeCanRenderFontSizeBit(float fontSize)(Code)(Java Doc)
final void computeCanRenderHeightBit(float height)(Code)(Java Doc)
final void computeCanRenderRequiredExtensionsBit(String[] requiredExtensions)(Code)(Java Doc)
final void computeCanRenderRequiredFeaturesBit(String[] requiredFeatures)(Code)(Java Doc)
final void computeCanRenderSystemLanguageBit(String[] systemLanguage)(Code)(Java Doc)
final void computeCanRenderTransformBit(Transform transform)(Code)(Java Doc)
final void computeCanRenderWidthBit(float width)(Code)(Java Doc)
protected void computeRenderingTile(Tile tile)(Code)(Java Doc)
protected boolean contributeBBox()(Code)(Java Doc)
public void dispatchEvent(ModelEvent evt)(Code)(Java Doc)
abstract public ModelNode getFirstChildNode()(Code)(Java Doc)
abstract ModelNode getFirstComputedExpandedChild()(Code)(Java Doc)
abstract ModelNode getFirstExpandedChild()(Code)(Java Doc)
protected float getFloatPropertyState(int propertyIndex)(Code)(Java Doc)
final protected float getInheritedFloatPropertyState(int propertyIndex)(Code)(Java Doc)
final protected int getInheritedPackedPropertyState(int propertyIndex)(Code)(Java Doc)
final protected Object getInheritedPropertyState(int propertyIndex)(Code)(Java Doc)
Transform getInverseTransformState()(Code)(Java Doc)
abstract public ModelNode getLastChildNode()(Code)(Java Doc)
abstract ModelNode getLastExpandedChild()(Code)(Java Doc)
protected Tile getLastRenderedTile()(Code)(Java Doc)
public ModelNode getNextSiblingNode()(Code)(Java Doc)
public DocumentNode getOwnerDocument()(Code)(Java Doc)
protected int getPackedPropertyState(int propertyIndex)(Code)(Java Doc)
boolean getPaintNeedsLoad()(Code)(Java Doc)
public ModelNode getParent()(Code)(Java Doc)
public ModelNode getPreviousSiblingNode()(Code)(Java Doc)
protected Object getPropertyState(int propertyIndex)(Code)(Java Doc)
protected Tile getRenderingTile()(Code)(Java Doc)
public SVGMatrix getScreenCTM()(Code)(Java Doc)
public Transform getTransformState()(Code)(Java Doc)
protected String getURIBase()(Code)(Java Doc)
protected UpdateListener getUpdateListener()(Code)(Java Doc)
public boolean hasDescendants()(Code)(Java Doc)
protected boolean hasNodeRendering()(Code)(Java Doc)
boolean inDocumentTree()(Code)(Java Doc)
protected boolean isFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc)
protected boolean isInDocumentTree()(Code)(Java Doc)
final public boolean isLoaded()(Code)(Java Doc)
protected boolean isPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc)
protected boolean isPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc)
protected void modifiedNode()(Code)(Java Doc)
protected void modifyingNode()(Code)(Java Doc)
protected void modifyingNodeRendering()(Code)(Java Doc)
public ModelNode nodeHitAt(float[] pt)(Code)(Java Doc)
final protected ModelNode nodeHitAt(ModelNode node, float[] pt)(Code)(Java Doc)
protected static void nodeInserted(ModelNode node)(Code)(Java Doc)
protected void nodeRendered()(Code)(Java Doc)
void onHookedInDocumentTree()(Code)(Java Doc)
void onUnhookedFromDocumentTree()(Code)(Java Doc)
static void paint(ModelNode node, RenderGraphics rg)(Code)(Java Doc)
public void paint(RenderGraphics rg)(Code)(Java Doc)
protected void propagateCanRenderState(int oldCanRenderState, int newCanRenderState)(Code)(Java Doc)
protected void propagateFloatPropertyState(int propertyIndex, float parentPropertyValue)(Code)(Java Doc)
protected void propagatePackedPropertyState(int propertyIndex, int parentPropertyValue)(Code)(Java Doc)
protected void propagatePropertyState(int propertyIndex, Object parentPropertyValue)(Code)(Java Doc)
protected void recomputeFloatPropertyState(int propertyIndex, float parentPropertyValue)(Code)(Java Doc)
void recomputeInheritedProperties()(Code)(Java Doc)
protected void recomputePackedPropertyState(int propertyIndex, int parentPropertyValue)(Code)(Java Doc)
protected void recomputePropertyState(int propertyIndex, Object parentPropertyValue)(Code)(Java Doc)
protected void recomputeTransformState()(Code)(Java Doc)
protected void recomputeTransformState(Transform parentTransform)(Code)(Java Doc)
void recomputeTransformState(Transform parentTransform, ModelNode node)(Code)(Java Doc)
final protected Transform recycleTransform(Transform tx, Transform workTx)(Code)(Java Doc)
public void removeEventListener(String type, EventListener listener, boolean useCapture) throws DOMException(Code)(Java Doc)
protected void setFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc)
public void setLoaded(boolean isLoaded)(Code)(Java Doc)
protected void setPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc)
protected void setParent(ModelNode newParent)(Code)(Java Doc)
protected void setParentQuiet(ModelNode newParent)(Code)(Java Doc)
protected void setPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc)
abstract protected void unhookChildrenQuiet()(Code)(Java Doc)
abstract protected void unhookExpandedQuiet()(Code)(Java Doc)
final protected void unhookQuiet(ModelNode node)(Code)(Java Doc)

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.