| 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.AbstractRenderingNode com.sun.perseus.model.AbstractShapeNode
All known Subclasses: com.sun.perseus.model.Line, com.sun.perseus.model.Ellipse, com.sun.perseus.model.ShapeNode, com.sun.perseus.model.Rect,
AbstractShapeNode | abstract public class AbstractShapeNode extends AbstractRenderingNode (Code) | | All nodes which represent geometry (complex or simple shapes)
are represented by descendants of this class.
version: $Id: AbstractShapeNode.java,v 1.16 2006/06/29 10:47:29 ln156897 Exp $ |
Method Summary | |
ElementNodeProxy | buildProxy() | protected void | computeRenderingTile(Tile tile, Transform t, GraphicsProperties gp) Computes the rendering tile for the given set of GraphicsProperties.
Parameters: tile - the Tile instance whose bounds should be set. Parameters: t - the Transform to the requested tile space, from this node's userspace. Parameters: gp - the GraphicsProperties for which the tileshould be computed. | abstract public boolean | contains(float x, float y, int fillRule) Parameters: x - the hit point coordinate along the x-axis, in user space. Parameters: y - the hit point coordinate along the y-axis, in user space. Parameters: fillRule - the fillRule to apply when testing for containment. | abstract public void | drawShape(RenderGraphics rg) | abstract public void | fillShape(RenderGraphics rg) | abstract Object | getStrokedPath(GraphicsProperties gp) Returns the stroked shape, using the given stroke properties.
Parameters: gp - the GraphicsProperties defining the renderingcontext. | protected boolean | isHitVP(float[] pt) Returns true if this node is hit by the input point. | protected boolean | isProxyHitVP(float[] pt, AbstractRenderingNodeProxy proxy) Returns true if this proxy node is hit by the input point. | protected void | paintRendered(RenderGraphics rg, GraphicsProperties gp, PaintTarget pt, Transform tx) Paints this node into the input RenderGraphics, assuming the node
is rendered. | void | setComputedFill(PaintServer newFill) | void | setComputedFillOpacity(float newFillOpacity) | void | setComputedStroke(PaintServer newStroke) | void | setComputedStrokeDashArray(float[] newStrokeDashArray) | void | setComputedStrokeDashOffset(float newStrokeDashOffset) | void | setComputedStrokeLineCap(int newStrokeLineCap) | void | setComputedStrokeLineJoin(int newStrokeLineJoin) | void | setComputedStrokeMiterLimit(float newStrokeMiterLimit) | void | setComputedStrokeOpacity(float newStrokeOpacity) | void | setComputedStrokeWidth(float newStrokeWidth) | final public boolean | strokedContains(float x, float y, GraphicsProperties gp) Parameters: x - the hit point coordinate along the x-axis, in user space. Parameters: y - the hit point coordinate along the y-axis, in user space. Parameters: gp - the GraphicsProperties instance defining the rendering context. |
AbstractShapeNode | public AbstractShapeNode(DocumentNode ownerDocument)(Code) | | Constructor.
Parameters: ownerDocument - this element's owner DocumentNode |
computeRenderingTile | protected void computeRenderingTile(Tile tile, Transform t, GraphicsProperties gp)(Code) | | Computes the rendering tile for the given set of GraphicsProperties.
Parameters: tile - the Tile instance whose bounds should be set. Parameters: t - the Transform to the requested tile space, from this node's userspace. Parameters: gp - the GraphicsProperties for which the tileshould be computed. the screen bounding box when this node is rendered with the given render context. |
contains | abstract public boolean contains(float x, float y, int fillRule)(Code) | | Parameters: x - the hit point coordinate along the x-axis, in user space. Parameters: y - the hit point coordinate along the y-axis, in user space. Parameters: fillRule - the fillRule to apply when testing for containment. true if the hit point is contained within the shape. |
drawShape | abstract public void drawShape(RenderGraphics rg)(Code) | | Parameters: rg - the RenderGraphics on which to draw the shape. |
fillShape | abstract public void fillShape(RenderGraphics rg)(Code) | | Parameters: rg - the RenderGraphics on which to fill the shape. |
getStrokedPath | abstract Object getStrokedPath(GraphicsProperties gp)(Code) | | Returns the stroked shape, using the given stroke properties.
Parameters: gp - the GraphicsProperties defining the renderingcontext. the shape's stroked path. |
isHitVP | protected boolean isHitVP(float[] pt)(Code) | | Returns true if this node is hit by the input point. The input point
is in viewport space.
For an AbstractShapeNode this method returns true if:
- the node is visible and
- the node's fill is not NONE and the associated shape contains the
input point, or
- the node's stroke is not NONE and the associated stroked shape
contains the input point.
This implements the equivalent of the visiblePainted value for the
pointerEvents attribute. That attribute is not part of SVG Tiny,
but the default behavior in SVG Tiny is that of visiblePainted.
Parameters: pt - the x/y coordinate. Should never be null and beof size two. If not, the behavior is unspecified.The x/y coordinate is in viewport space. true if the node is hit by the input point. See Also: AbstractShapeNode.nodeHitAt |
isProxyHitVP | protected boolean isProxyHitVP(float[] pt, AbstractRenderingNodeProxy proxy)(Code) | | Returns true if this proxy node is hit by the input point. The input
point is in viewport space.
Parameters: pt - the x/y coordinate. Should never be null and beof size two. If not, the behavior is unspecified.The x/y coordinate is in viewport space. Parameters: proxy - the tested ElementNodeProxy. true if the node is hit by the input point. See Also: AbstractShapeNode.isHitVP |
paintRendered | protected void paintRendered(RenderGraphics rg, GraphicsProperties gp, PaintTarget pt, Transform tx)(Code) | | Paints this node into the input RenderGraphics, assuming the node
is rendered.
Parameters: rg - the RenderGraphics where the node should paintitself. Parameters: gp - the GraphicsProperties controlling the operation'srendering Parameters: pt - the PaintTarget for the paint operation. Parameters: txf - the Transform from user space to device space forthe paint operation. |
setComputedFill | void setComputedFill(PaintServer newFill)(Code) | | Parameters: newFill - the new computed fill property. |
setComputedFillOpacity | void setComputedFillOpacity(float newFillOpacity)(Code) | | Parameters: newFillOpacity - the new computed value for the fill opacity property. |
setComputedStroke | void setComputedStroke(PaintServer newStroke)(Code) | | Parameters: newStroke - the new computed stroke property. |
setComputedStrokeDashArray | void setComputedStrokeDashArray(float[] newStrokeDashArray)(Code) | | Parameters: newStrokeDashArray - the new computed stroke-dasharray property value. |
setComputedStrokeDashOffset | void setComputedStrokeDashOffset(float newStrokeDashOffset)(Code) | | Parameters: newStrokeDashOffset - the new stroke-dashoffset computed property value. |
setComputedStrokeLineCap | void setComputedStrokeLineCap(int newStrokeLineCap)(Code) | | Parameters: newStrokeLineCap - the new value for the stroke-linecap property. |
setComputedStrokeLineJoin | void setComputedStrokeLineJoin(int newStrokeLineJoin)(Code) | | Parameters: newStrokeLineJoin - the new computed value for stroke-line-join |
setComputedStrokeMiterLimit | void setComputedStrokeMiterLimit(float newStrokeMiterLimit)(Code) | | Parameters: newStrokeMiterLimit - the new computed stroke-miterlimit property. |
setComputedStrokeOpacity | void setComputedStrokeOpacity(float newStrokeOpacity)(Code) | | Parameters: newStrokeOpacity - the new computed stroke-opacity property. |
setComputedStrokeWidth | void setComputedStrokeWidth(float newStrokeWidth)(Code) | | Parameters: newStrokeWidth - the new computed stroke-width property value. |
strokedContains | final public boolean strokedContains(float x, float y, GraphicsProperties gp)(Code) | | Parameters: x - the hit point coordinate along the x-axis, in user space. Parameters: y - the hit point coordinate along the y-axis, in user space. Parameters: gp - the GraphicsProperties instance defining the rendering context. true if the hit point is contained within the shape. |
Methods inherited from com.sun.perseus.model.AbstractRenderingNode | Box addBBox(Box bbox, Transform t)(Code)(Java Doc) protected Transform appendTransform(Transform tx, Transform workTx)(Code)(Java Doc) ElementNodeProxy buildProxy()(Code)(Java Doc) protected void clearLastRenderedTile()(Code)(Java Doc) protected void clearLayouts()(Code)(Java Doc) final protected void computeRenderingTile(Tile tile)(Code)(Java Doc) abstract void computeRenderingTile(Tile tile, Transform t, GraphicsProperties gp)(Code)(Java Doc) TraitAnim createTraitAnimImpl(String traitName)(Code)(Java Doc) public SVGRect getBBox()(Code)(Java Doc) protected Tile getLastRenderedTile()(Code)(Java Doc) SVGMatrix getMatrixTraitImpl(String name) throws DOMException(Code)(Java Doc) public Transform getMotion()(Code)(Java Doc) public int getNumberOfProperties()(Code)(Java Doc) protected Tile getRenderingTile()(Code)(Java Doc) public SVGRect getScreenBBox()(Code)(Java Doc) public String getTraitImpl(String name) throws DOMException(Code)(Java Doc) public Transform getTransform()(Code)(Java Doc) public boolean hasNodeRendering()(Code)(Java Doc) abstract boolean isHitVP(float[] pt)(Code)(Java Doc) abstract boolean isProxyHitVP(float[] pt, AbstractRenderingNodeProxy proxy)(Code)(Java Doc) public ModelNode nodeHitAt(float[] pt)(Code)(Java Doc) void nodeHookedInDocumentTree()(Code)(Java Doc) protected void nodeRendered()(Code)(Java Doc) void nodeUnhookedFromDocumentTree()(Code)(Java Doc) public void paint(RenderGraphics rg)(Code)(Java Doc) abstract void paintRendered(RenderGraphics rg, GraphicsProperties gp, PaintTarget pt, Transform tx)(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) ModelNode proxyNodeHitAt(float[] pt, ElementNodeProxy proxy)(Code)(Java Doc) protected void recomputeTransformState(Transform parentTransform)(Code)(Java Doc) final void renderingDirty()(Code)(Java Doc) void setComputedDisplay(boolean newDisplay)(Code)(Java Doc) void setComputedVisibility(boolean newVisibility)(Code)(Java Doc) void setFloatArrayTrait(String name, float[][] value) throws DOMException(Code)(Java Doc) void setMatrixTraitImpl(String name, Transform matrix) throws DOMException(Code)(Java Doc) public void setMotion(Transform newMotion)(Code)(Java Doc) public void setTraitImpl(String name, String value) throws DOMException(Code)(Java Doc) public void setTransform(Transform newTransform)(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)
|
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)
|
|
|