| java.lang.Object com.sun.perseus.model.ModelNode com.sun.perseus.model.CompositeNode com.sun.perseus.model.ElementNode com.sun.perseus.model.CompositeGraphicsNode com.sun.perseus.model.StructureNode com.sun.perseus.model.SVG
SVG | public class SVG extends StructureNode implements SVGSVGElement,SVGPoint(Code) | | An SVG node represents an <code>
element. In addition to a standard StructureNode , an
SVG node can have a view box which causes a transform
to be applied before drawing its children. This transform maps children
viewBox coordinates into the SVG's parent Viewport
coordinate system.
See Also: Viewport version: $Id: SVG.java,v 1.12 2006/06/29 10:47:34 ln156897 Exp $ |
Field Summary | |
protected int | align Controls the way the svg viewBox is aligned in
the parent viewport. | protected float | currentRotate The current rotation angle. | protected float | currentScale | protected float | currentTimeDelta Precision adjustment, needed to keep the delta between the current
time and the long values used internally. | protected float | height | protected float | tx | protected float | ty | protected float[][] | viewBox This SVG node's viewBox. | protected float | width |
Method Summary | |
public boolean | animationsPaused() | protected Transform | appendTransform(Transform tx, Transform workTx) Appends the viewBox to viewport transform, if there is a viewBox.
Parameters: tx - the Transform to apply additional node transforms to. | void | applyUserTransform() Uses currentScale, currentRotate, tx and ty to compute the
owner document's transform. | public SVGMatrix | createSVGMatrixComponents(float a, float b, float c, float d, float e, float f) This
object can be used to modify value of traits which are compatible with
org.w3c.dom.svg.SVGMatrix SVGMatrix type using
org.w3c.dom.svg.SVGElement.setMatrixTrait setMatrixTrait method. | public SVGPath | createSVGPath() new org.w3c.dom.svg.SVGPath SVGPath object. | public SVGRGBColor | createSVGRGBColor(int red, int green, int blue) new org.w3c.dom.svg.SVGRGBColor SVGRGBColor object. | public SVGRect | createSVGRect() a new org.w3c.dom.svg.SVGRect SVGRect object. | TraitAnim | createTraitAnimImpl(String traitName) | public int | getAlign() | public float | getCurrentRotate() | public float | getCurrentScale() | public float | getCurrentTime() | public SVGPoint | getCurrentTranslate() The initial values for currentTranslate is SVGPoint(0,0). | public String[][] | getDefaultTraits() The default value for the width trait and the height trait
is '100%'.
an array of trait default values, used if this elementrequires that the default trait value be explicitly set through a setTrait call. | float | getFloatTraitImpl(String name) SVG handles width and height float traits. | public float | getHeight() | public String | getLocalName() | SVGRect | getRectTraitImpl(String name) SVG handles the viewBox Rect trait. | public String | getTraitImpl(String name) SVG handles the version, baseProfile, viewBox and zoomAndPan traits. | public float[][] | getViewBox() | public SVGRect | getViewport() | public float | getWidth() | public float | getX() Returns the x component of the point. | public float | getY() Returns the y component of the point. | public ElementNode | newInstance(DocumentNode doc) Used by DocumentNode to create a new instance from
a prototype SVG .
Parameters: doc - the DocumentNode for which a new node isshould be created. | public void | pauseAnimations() Pauses animation timeline. | public void | setAlign(int newAlign) | public void | setCurrentRotate(float value) | public void | setCurrentScale(float value) | public void | setCurrentTime(float seconds) | void | setFloatArrayTrait(String name, float[][] value) Set the trait value as float. | public void | setFloatTraitImpl(String name, float value) SVG handles width and height traits. | public void | setHeight(float newHeight) Sets the viewport height. | public void | setRectTraitImpl(String name, SVGRect rect) SVG handles the viewBox Rect trait.
Parameters: name - the trait name (e.g., "viewBox" Parameters: rect - the trait 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 the requestedtrait's value cannot be specified as an org.w3c.dom.svg.SVGRectSVGRect throws: DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is an invalid value for the given trait or null. | public void | setTraitImpl(String name, String value) SVG handles the version, baseProfile, viewBox and zoomAndPan traits. | public void | setViewBox(float[][] newViewBox) Sets a new value for the viewBox. | public void | setWidth(float newWidth) Sets the viewport width. | public void | setX(float value) Sets the x component of the point to the specified float value. | public void | setY(float value) Sets the y component of the point to the specified float value. | boolean | supportsTrait(String traitName) SVG handles the version, baseProfile, viewBox, zoomAndPan,
width, height and preserveAspectRatio traits.
Parameters: traitName - the name of the trait which the element may support. | String | toStringTrait(String name, float[][] value) | public void | unpauseAnimations() Resumes animation timeline. | public float[][] | validateFloatArrayTrait(String traitName, String value, String reqNamespaceURI, String reqLocalName, String reqTraitNamespace, String reqTraitName) Validates the input trait value. |
align | protected int align(Code) | | Controls the way the svg viewBox is aligned in
the parent viewport. For SVG Tiny, one of
ALIGN_XMIDYMID or ALIGN_NONE.
|
currentRotate | protected float currentRotate(Code) | | The current rotation angle.
|
currentScale | protected float currentScale(Code) | | The current scale
|
currentTimeDelta | protected float currentTimeDelta(Code) | | Precision adjustment, needed to keep the delta between the current
time and the long values used internally.
|
height | protected float height(Code) | | The SVG document's requested height
|
tx | protected float tx(Code) | | The current translate along the x axis
|
ty | protected float ty(Code) | | The current translate along the y axis
|
viewBox | protected float[][] viewBox(Code) | | This SVG node's viewBox. If null, then there is
no viewBox.
|
width | protected float width(Code) | | The SVG document's requested width
|
SVG | public SVG(DocumentNode ownerDocument)(Code) | | Constructor.
Parameters: ownerDocument - this element's owner DocumentNode |
animationsPaused | public boolean animationsPaused()(Code) | | the state of the animation timeline. |
appendTransform | protected Transform appendTransform(Transform tx, Transform workTx)(Code) | | Appends the viewBox to viewport transform, if there is a viewBox.
Parameters: tx - the Transform to apply additional node transforms to. This may be null. Parameters: workTx - a Transform which can be re-used if a new Transform needs to be created and workTxis not the same instance as tx. a transform with this node's transform added. |
applyUserTransform | void applyUserTransform()(Code) | | Uses currentScale, currentRotate, tx and ty to compute the
owner document's transform.
|
createSVGMatrixComponents | public SVGMatrix createSVGMatrixComponents(float a, float b, float c, float d, float e, float f)(Code) | | This
object can be used to modify value of traits which are compatible with
org.w3c.dom.svg.SVGMatrix SVGMatrix type using
org.w3c.dom.svg.SVGElement.setMatrixTrait setMatrixTrait method. The
internal representation of the matrix is as follows:
[ a c e ]
[ b d f ]
[ 0 0 1 ]
See Also: org.w3c.dom.svg.SVGMatrix Parameters: a - the 0,0 matrix parameter Parameters: b - the 1,0 matrix parameter Parameters: c - the 0,1 matrix parameter Parameters: d - the 1,1 matrix parameter Parameters: e - the 0,2 matrix parameter Parameters: f - the 1,2 matrix parameter a new SVGMatrix object with the requested components. |
createTraitAnimImpl | TraitAnim createTraitAnimImpl(String traitName)(Code) | | Parameters: traitName - the trait name. |
getAlign | public int getAlign()(Code) | | this node's align property |
getCurrentRotate | public float getCurrentRotate()(Code) | | |
getCurrentScale | public float getCurrentScale()(Code) | | |
getCurrentTime | public float getCurrentTime()(Code) | | |
getCurrentTranslate | public SVGPoint getCurrentTranslate()(Code) | | The initial values for currentTranslate is SVGPoint(0,0).
|
getDefaultTraits | public String[][] getDefaultTraits()(Code) | | The default value for the width trait and the height trait
is '100%'.
an array of trait default values, used if this elementrequires that the default trait value be explicitly set through a setTrait call. This happens, for example,with the begin trait value on animation elements. |
getFloatTraitImpl | float getFloatTraitImpl(String name) throws DOMException(Code) | | SVG handles width and height float traits.
Other attributes are handled by the super class.
Parameters: name - the requested trait name. Parameters: the - requested trait's floating point 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 float throws: SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content. |
getHeight | public float getHeight()(Code) | | the viewport height |
getLocalName | public String getLocalName()(Code) | | the SVGConstants.SVG_SVG_TAG value |
getRectTraitImpl | SVGRect getRectTraitImpl(String name) throws DOMException(Code) | | SVG handles the viewBox Rect trait.
Parameters: name - the requested trait name (e.g., "viewBox") the requested trait SVGRect 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 org.w3c.dom.svg.SVGRect SVGRect throws: SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content. |
getTraitImpl | public String getTraitImpl(String name) throws DOMException(Code) | | SVG handles the version, baseProfile, viewBox and zoomAndPan traits.
Parameters: name - the requested trait's name (e.g., "zoomAndPan") the requested trait string value (e.g., "disable") 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). |
getViewBox | public float[][] getViewBox()(Code) | | this SVG's viewBox |
getViewport | public SVGRect getViewport()(Code) | | The object itself and its contents are both readonly.
org.w3c.dom.DOMException DOMException with error code
NO_MODIFICATION_ALLOWED_ERR is raised if attempt is made to modify
it. The returned SVGRect object is "live", i.e. its x, y, width, height
is automatically updated if viewport size or position changes.
|
getWidth | public float getWidth()(Code) | | the viewport's width |
getX | public float getX()(Code) | | Returns the x component of the point.
the x component of the point. |
getY | public float getY()(Code) | | Returns the y component of the point.
the y component of the point. |
newInstance | public ElementNode newInstance(DocumentNode doc)(Code) | | Used by DocumentNode to create a new instance from
a prototype SVG .
Parameters: doc - the DocumentNode for which a new node isshould be created. a new SVG for the requested document. |
pauseAnimations | public void pauseAnimations()(Code) | | Pauses animation timeline. If user agent has pause/play control that
control is changed to paused state. Has no effect if timeline already
paused.
|
setAlign | public void setAlign(int newAlign)(Code) | | Parameters: newAlign - new alignment property |
setCurrentRotate | public void setCurrentRotate(float value)(Code) | | |
setCurrentTime | public void setCurrentTime(float seconds)(Code) | | |
setFloatArrayTrait | void setFloatArrayTrait(String name, float[][] value) throws DOMException(Code) | | Set the trait value as float.
Parameters: name - the trait's name. Parameters: value - the trait's value. throws: DOMException - with error code NOT_SUPPORTED_ERROR if the requestedtrait is not supported on this element. throws: DOMException - with error code TYPE_MISMATCH_ERR if the requestedtrait's value cannot be specified as a float throws: DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is an invalid value for the given trait. |
setFloatTraitImpl | public void setFloatTraitImpl(String name, float value) throws DOMException(Code) | | SVG handles width and height traits.
Other traits are handled by the super class.
Parameters: name - the trait's name. Parameters: value - the new trait's floating point value. throws: DOMException - with error code NOT_SUPPORTED_ERROR if the requestedtrait is not supported on this element. throws: DOMException - with error code TYPE_MISMATCH_ERR if the requestedtrait's value cannot be specified as a float throws: DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is an invalid value for the given trait. throws: SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content. |
setHeight | public void setHeight(float newHeight)(Code) | | Sets the viewport height.
Parameters: newHeight - Should be greater than 0 |
setRectTraitImpl | public void setRectTraitImpl(String name, SVGRect rect) throws DOMException(Code) | | SVG handles the viewBox Rect trait.
Parameters: name - the trait name (e.g., "viewBox" Parameters: rect - the trait 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 the requestedtrait's value cannot be specified as an org.w3c.dom.svg.SVGRectSVGRect throws: DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is an invalid value for the given trait or null. SVGRect isinvalid if the width or height values are set to negative. throws: SecurityException - if the application does not have the necessaryprivilege rights to access this (SVG) content. |
setTraitImpl | public void setTraitImpl(String name, String value) throws DOMException(Code) | | SVG handles the version, baseProfile, viewBox and zoomAndPan traits.
Parameters: name - the trait's name (e.g., "viewBox") Parameters: value - the new trait's string value (e.g., "0 0 400 300") throws: DOMException - with error code NOT_SUPPORTED_ERROR if the requestedtrait is not supported on this element or null. 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. |
setViewBox | public void setViewBox(float[][] newViewBox)(Code) | | Sets a new value for the viewBox.
Parameters: newViewBox - the new viewBox for this SVG throws: IllegalArgumentException - if the input viewBox is not null and not of a float {float[2], float[1], float[1]} array. |
setWidth | public void setWidth(float newWidth)(Code) | | Sets the viewport width.
Parameters: newWidth - Should be greater than 0 |
setX | public void setX(float value)(Code) | | Sets the x component of the point to the specified float value.
Parameters: value - the x component value |
setY | public void setY(float value)(Code) | | Sets the y component of the point to the specified float value.
Parameters: value - the y component value |
supportsTrait | boolean supportsTrait(String traitName)(Code) | | SVG handles the version, baseProfile, viewBox, zoomAndPan,
width, height and preserveAspectRatio traits.
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. |
toStringTrait | String toStringTrait(String name, float[][] value)(Code) | | Parameters: name - the name of the trait to convert. Parameters: value - the float trait value to convert. |
unpauseAnimations | public void unpauseAnimations()(Code) | | Resumes animation timeline. If user agent has pause/play control that
control is changed to playing state. Has no effect if timeline is already
playing.
|
validateFloatArrayTrait | public float[][] validateFloatArrayTrait(String traitName, String value, String reqNamespaceURI, String reqLocalName, String reqTraitNamespace, String reqTraitName) throws DOMException(Code) | | Validates the input trait value.
Parameters: traitName - the name of the trait to be validated. Parameters: value - the value to be validated Parameters: reqNamespaceURI - the namespace of the element requesting validation. Parameters: reqLocalName - the local name of the element requesting validation. Parameters: reqTraitNamespace - the namespace of the trait which has the valuesvalue on the requesting element. Parameters: reqTraitName - the name of the trait which has the values value on the requesting element. throws: DOMException - with error code INVALID_ACCESS_ERR if the inputvalue is incompatible with the given trait. |
Methods inherited from com.sun.perseus.model.StructureNode | Box addBBox(Box bbox, Transform t)(Code)(Java Doc) ElementNodeProxy buildProxy()(Code)(Java Doc) int computeFontWeight(int refPackedFontWeight, int relFontWeight)(Code)(Java Doc) TraitAnim createTraitAnimImpl(String traitName)(Code)(Java Doc) String fontStyleToStringTrait(int fontStyle)(Code)(Java Doc) String fontWeightToStringTrait(int fontWeight)(Code)(Java Doc) public SVGRect getBBox()(Code)(Java Doc) public static void getFittingTransform(float ix, float iy, float iw, float ih, float ox, float oy, float ow, float oh, int align, Transform result)(Code)(Java Doc) protected float getFloatPropertyState(int propertyIndex)(Code)(Java Doc) float getFloatTraitImpl(String name) throws DOMException(Code)(Java Doc) public String[] getFontFamily()(Code)(Java Doc) public float getFontSize()(Code)(Java Doc) public int getFontStyle()(Code)(Java Doc) public int getFontWeight()(Code)(Java Doc) public int getNumberOfProperties()(Code)(Java Doc) protected int getPackedPropertyState(int propertyIndex)(Code)(Java Doc) protected Object getPropertyState(int propertyIndex)(Code)(Java Doc) public SVGRect getScreenBBox()(Code)(Java Doc) String getSpecifiedTraitImpl(String name) throws DOMException(Code)(Java Doc) public int getTextAnchor()(Code)(Java Doc) public String getTraitImpl(String name) throws DOMException(Code)(Java Doc) protected boolean isFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc) protected boolean isPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc) protected boolean isPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc) public ModelNode nodeHitAt(float[] pt)(Code)(Java Doc) public void paint(RenderGraphics rg)(Code)(Java Doc) ModelNode proxyNodeHitAt(float[] pt, ElementNodeProxy proxy)(Code)(Java Doc) void recomputeInheritedProperties()(Code)(Java Doc) protected void recomputePackedPropertyState(int propertyIndex, int parentPropertyValue)(Code)(Java Doc) void setComputedFontFamily(String[] newFontFamily)(Code)(Java Doc) void setComputedFontSize(float newFontSize)(Code)(Java Doc) void setComputedFontStyle(int newFontStyle)(Code)(Java Doc) void setComputedFontWeight(int newFontWeight)(Code)(Java Doc) void setComputedTextAnchor(int newTextAnchor)(Code)(Java Doc) void setFloatArrayTrait(String name, float[][] value) throws DOMException(Code)(Java Doc) protected void setFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc) public void setFloatTraitImpl(String name, float value) throws DOMException(Code)(Java Doc) public void setFontFamily(String[] newFontFamily)(Code)(Java Doc) public void setFontSize(float newFontSize)(Code)(Java Doc) public void setFontStyle(int newFontStyle)(Code)(Java Doc) public void setFontWeight(int newFontWeight)(Code)(Java Doc) protected void setPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc) protected void setPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc) public void setTextAnchor(int newTextAnchor)(Code)(Java Doc) public void setTraitImpl(String name, String value) throws DOMException(Code)(Java Doc) boolean supportsTrait(String traitName)(Code)(Java Doc) String textAnchorToStringTrait(int textAnchor)(Code)(Java Doc) String toStringTrait(String name, float[][] value)(Code)(Java Doc) public 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)
|
Methods inherited from com.sun.perseus.model.CompositeGraphicsNode | void clearMarker(int marker)(Code)(Java Doc) protected boolean contributeBBox()(Code)(Java Doc) TraitAnim createTraitAnimImpl(String traitName)(Code)(Java Doc) String fillRuleToStringTrait(int fillRule)(Code)(Java Doc) public SVGRect getBBox()(Code)(Java Doc) public RGB getColor()(Code)(Java Doc) public boolean getDisplay()(Code)(Java Doc) public PaintServer getFill()(Code)(Java Doc) public float getFillOpacity()(Code)(Java Doc) public int getFillRule()(Code)(Java Doc) protected float getFloatPropertyState(int propertyIndex)(Code)(Java Doc) float getFloatTraitImpl(String name) throws DOMException(Code)(Java Doc) Transform getInverseTransformState()(Code)(Java Doc) public float getOpacity()(Code)(Java Doc) protected int getPackedPropertyState(int propertyIndex)(Code)(Java Doc) protected Object getPropertyState(int propertyIndex)(Code)(Java Doc) SVGRGBColor getRGBColorTraitImpl(String name) throws DOMException(Code)(Java Doc) public SVGRect getScreenBBox()(Code)(Java Doc) String getSpecifiedTraitImpl(String name) throws DOMException(Code)(Java Doc) public PaintServer getStroke()(Code)(Java Doc) public float[] getStrokeDashArray()(Code)(Java Doc) public float getStrokeDashOffset()(Code)(Java Doc) public int getStrokeLineCap()(Code)(Java Doc) public int getStrokeLineJoin()(Code)(Java Doc) public float getStrokeMiterLimit()(Code)(Java Doc) public float getStrokeOpacity()(Code)(Java Doc) public float getStrokeWidth()(Code)(Java Doc) public String getTraitImpl(String name) throws DOMException(Code)(Java Doc) public Transform getTransformState()(Code)(Java Doc) public boolean getVisibility()(Code)(Java Doc) public boolean isColorRelative(int propertyIndex)(Code)(Java Doc) public boolean isColorRelativeProperty(int propertyIndex)(Code)(Java Doc) protected boolean isFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc) final public boolean isInherited(int propertyIndex)(Code)(Java Doc) final boolean isMarkerSet(int marker)(Code)(Java Doc) protected boolean isPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc) protected boolean isPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc) public void onPaintServerUpdate(String paintType, PaintServer paintServer)(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(Transform parentTransform)(Code)(Java Doc) public void setColor(RGB newColor)(Code)(Java Doc) public void setColorRelative(int propertyIndex, boolean isColorRelative)(Code)(Java Doc) protected void setColorRelativeQuiet(int propertyIndex, boolean isColorRelative)(Code)(Java Doc) void setComputedColor(RGB newColor)(Code)(Java Doc) void setComputedDisplay(boolean newDisplay)(Code)(Java Doc) void setComputedFill(PaintServer newFill)(Code)(Java Doc) void setComputedFillOpacity(float newFillOpacity)(Code)(Java Doc) final void setComputedFillRule(int newFillRule)(Code)(Java Doc) void setComputedOpacity(float newOpacity)(Code)(Java Doc) void setComputedStroke(PaintServer newStroke)(Code)(Java Doc) void setComputedStrokeDashArray(float[] newStrokeDashArray)(Code)(Java Doc) void setComputedStrokeDashOffset(float newStrokeDashOffset)(Code)(Java Doc) void setComputedStrokeLineCap(int newStrokeLineCap)(Code)(Java Doc) void setComputedStrokeLineJoin(int newStrokeLineJoin)(Code)(Java Doc) void setComputedStrokeMiterLimit(float newStrokeMiterLimit)(Code)(Java Doc) void setComputedStrokeOpacity(float newStrokeOpacity)(Code)(Java Doc) void setComputedStrokeWidth(float newStrokeWidth)(Code)(Java Doc) void setComputedVisibility(boolean newVisibility)(Code)(Java Doc) public void setDisplay(boolean newDisplay)(Code)(Java Doc) public void setFill(PaintServer newFill)(Code)(Java Doc) public void setFillOpacity(float newFillOpacity)(Code)(Java Doc) public void setFillRule(int newFillRule)(Code)(Java Doc) void setFloatArrayTrait(String name, float[][] value) throws DOMException(Code)(Java Doc) public void setFloatInherited(int propertyIndex, boolean inherit)(Code)(Java Doc) protected void setFloatPropertyState(int propertyIndex, float propertyValue)(Code)(Java Doc) public void setFloatTraitImpl(String name, float value) throws DOMException(Code)(Java Doc) public void setInherited(int propertyIndex, boolean inherit)(Code)(Java Doc) protected void setInheritedQuiet(int propertyIndex, boolean inherit)(Code)(Java Doc) void setMarker(int marker)(Code)(Java Doc) public void setOpacity(float newOpacity)(Code)(Java Doc) public void setPackedInherited(int propertyIndex, boolean inherit)(Code)(Java Doc) protected void setPackedPropertyState(int propertyIndex, int propertyValue)(Code)(Java Doc) protected void setPropertyState(int propertyIndex, Object propertyValue)(Code)(Java Doc) void setRGBColorTraitImpl(String name, SVGRGBColor color) throws DOMException(Code)(Java Doc) public void setStroke(PaintServer newStroke)(Code)(Java Doc) public void setStrokeDashArray(float[] newStrokeDashArray)(Code)(Java Doc) public void setStrokeDashOffset(float newStrokeDashOffset)(Code)(Java Doc) public void setStrokeLineCap(int newStrokeLineCap)(Code)(Java Doc) public void setStrokeLineJoin(int newStrokeLineJoin)(Code)(Java Doc) public void setStrokeMiterLimit(float newStrokeMiterLimit)(Code)(Java Doc) public void setStrokeOpacity(float newStrokeOpacity)(Code)(Java Doc) public void setStrokeWidth(float newStrokeWidth)(Code)(Java Doc) public void setTraitImpl(String name, String value) throws DOMException(Code)(Java Doc) public void setVisibility(boolean newVisibility)(Code)(Java Doc) String strokeLineCapToStringTrait(int strokeLineCap)(Code)(Java Doc) String strokeLineJoinToStringTrait(int strokeLineJoin)(Code)(Java Doc) boolean supportsTrait(String traitName)(Code)(Java Doc) String toStringTrait(String name, float[][] value)(Code)(Java Doc) public 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)
|
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)
|
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)
|
|
|