Uses of Interface
org.w3c.dom.css.CSSValue

Packages that use CSSValue
org.apache.batik.bridge Provides an API for mapping and maintaining consistency between the SVG DOM tree and the GVT tree. 
org.apache.batik.css Provides the classes for accessing CSS2 through DOM level 2 interfaces. 
org.apache.batik.css.event Provides the interfaces and classes to add basic event support for the various entities in the CSS package. 
org.apache.batik.css.svg Provides the CSSValue factories specific to SVG. 
org.apache.batik.css.value Provides the classes to represent CSS values and the factories for the values common to CSS2 and SVG. 
org.apache.batik.dom.svg   
org.apache.batik.parser.style Provides an extensible framework for style attributes parsing. 
org.w3c.dom.css   
org.w3c.dom.svg   
 

Uses of CSSValue in org.apache.batik.bridge
 

Methods in org.apache.batik.bridge with parameters of type CSSValue
static float UnitProcessor.cssOtherCoordinateToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the other coordinate value in user units.
static float UnitProcessor.cssHorizontalCoordinateToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the horizontal coordinate in user units.
static float UnitProcessor.cssVerticalCoordinateToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the vertical coordinate in user units.
static float UnitProcessor.cssOtherLengthToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the other length value in user units.
static float UnitProcessor.cssHorizontalLengthToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the horizontal length in user units.
static float UnitProcessor.cssVerticalLengthToUserSpace(CSSValue v, java.lang.String prop, UnitProcessor.Context ctx)
          Returns the vertical length in user units.
protected static int CSSUtilities.rule(CSSValue v)
          Returns the winding rule represented by the specified CSSValue.
protected static java.awt.Paint PaintServer.convertPaint(Element paintedElement, GraphicsNode paintedNode, CSSValue paintDef, float opacity, BridgeContext ctx)
          Converts a Paint definition to a concrete java.awt.Paint instance according to the specified parameters.
static java.awt.Paint PaintServer.silentConvertURIPaint(Element paintedElement, GraphicsNode paintedNode, CSSValue paintDef, float opacity, BridgeContext ctx)
          Converts a Paint specified by URI without sending any error. if a problem occured while processing the URI, it just returns null (same effect as 'none')
static java.awt.Paint PaintServer.convertURIPaint(Element paintedElement, GraphicsNode paintedNode, CSSValue paintDef, float opacity, BridgeContext ctx)
          Converts a Paint specified as a URI.
static float[] PaintServer.convertStrokeDasharray(CSSValue v, UnitProcessor.Context uctx)
          Converts the 'stroke-dasharray' property to a list of float number in user units.
static float PaintServer.convertOpacity(CSSValue v)
          Returns the opacity represented by the specified CSSValue.
 

Uses of CSSValue in org.apache.batik.css
 

Classes in org.apache.batik.css that implement CSSValue
 class CSSOMReadOnlyValue
          This class implements the CSSValue, CSSPrimitiveValue, CSSValueList interfaces.
 class CSSOMValue
          This class implements the CSSValue, CSSPrimitiveValue, CSSValueList interfaces.
 

Methods in org.apache.batik.css that return CSSValue
 CSSValue CSSOMStyleDeclaration.getPropertyCSSValue(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.getPropertyCSSValue(String).
 CSSValue CSSOMReadOnlyStyleDeclaration.getPropertyCSSValue(java.lang.String propertyName)
          DOM: Implements CSSStyleDeclaration.getPropertyCSSValue(String).
 CSSValue CSSOMReadOnlyStyleDeclaration.getLocalPropertyCSSValue(java.lang.String propertyName)
          Returns the local CSSValue.
 CSSValue CSSOMValue.item(int index)
          DOM: Implements CSSValueList.item(int).
 CSSValue CSSOMReadOnlyValue.item(int index)
          DOM: Implements CSSValueList.item(int).
 

Methods in org.apache.batik.css with parameters of type CSSValue
 void CSSOMStyleDeclaration.cssValueChange(java.lang.String prop, CSSValue oldV, CSSValue newV)
          Notifies this style declaration that a CSSValue as changed.
 void CSSOMStyleDeclaration.setPropertyCSSValue(java.lang.String propertyName, CSSValue v, java.lang.String imp)
          Sets a property value.
 void CSSOMReadOnlyStyleDeclaration.setPropertyCSSValue(java.lang.String propertyName, CSSValue v, java.lang.String imp, int orig)
          Sets a property value.
 

Uses of CSSValue in org.apache.batik.css.event
 

Fields in org.apache.batik.css.event declared as CSSValue
protected  CSSValue CSSPropertyChangeEvent.oldValue
          The CSS property old value.
protected  CSSValue CSSPropertyChangeEvent.newValue
          The CSS property new value.
 

Methods in org.apache.batik.css.event that return CSSValue
 CSSValue CSSPropertyChangeEvent.getOldValue()
          Returns the value of the property before the change.
 CSSValue CSSPropertyChangeEvent.getNewValue()
          Returns the value of the property after the change.
 

Methods in org.apache.batik.css.event with parameters of type CSSValue
 void CSSStyleDeclarationChangeSupport.fireCSSPropertyChange(java.lang.String property, CSSValue oldValue, CSSValue newValue)
          Reports a bound property update to any registered listeners.
 void CSSValueChangeListener.cssValueChange(java.lang.String property, CSSValue before, CSSValue after)
          Called when a CSS value is changed.
 

Constructors in org.apache.batik.css.event with parameters of type CSSValue
CSSPropertyChangeEvent(java.lang.Object source, java.lang.String property, CSSValue before, CSSValue after)
          Creates a new CSSPropertyChangeEvent object.
 

Uses of CSSValue in org.apache.batik.css.svg
 

Classes in org.apache.batik.css.svg that implement CSSValue
 class SVGCSSReadOnlyValue
          This class represents a read-only SVG CSS value.
 class SVGCSSValue
          This class represents a SVG CSS value.
 

Uses of CSSValue in org.apache.batik.css.value
 

Fields in org.apache.batik.css.value declared as CSSValue
protected  CSSValue[] ImmutableValueList.table
          The table that contains the values.
 

Methods in org.apache.batik.css.value that return CSSValue
 CSSValue AbstractImmutableValue.item(int index)
          Used to retrieve a CSS rule by ordinal index.
 CSSValue ImmutableValueList.item(int index)
          Used to retrieve a CSS rule by ordinal index.
 CSSValue ImmutableValue.item(int index)
          Used to retrieve a CSS rule by ordinal index.
 

Methods in org.apache.batik.css.value with parameters of type CSSValue
 void ImmutableValueList.append(CSSValue item)
          Appends an item to the list.
 

Uses of CSSValue in org.apache.batik.dom.svg
 

Methods in org.apache.batik.dom.svg that return CSSValue
 CSSValue SVGOMTextContentElement.getPresentationAttribute(java.lang.String name)
          DOM: Implements SVGStylable.getPresentationAttribute(String).
 CSSValue SVGStylableElement.getPresentationAttribute(java.lang.String name)
          DOM: Implements SVGStylable.getPresentationAttribute(String).
static CSSValue SVGStylableSupport.getPresentationAttribute(java.lang.String name, Element elt)
          To implement SVGStylable.getPresentationAttribute(String).
 

Uses of CSSValue in org.apache.batik.parser.style
 

Classes in org.apache.batik.parser.style that implement CSSValue
 class AbstractCSSValue
          This class implements the CSSValue, CSSPrimitiveValue, CSSValueList interfaces.
 class CSSFloatValue
          This class represents CSS float values
 class CSSInheritValue
          This class represents CSS 'inherit' values
 class CSSRectValue
          This class represents CSS rect values
 class CSSRGBColorValue
          This class represents CSS color values
 class CSSStringValue
          This class represents CSS string values
 class CSSValueListValue
          This class represents CSS list of values
 

Fields in org.apache.batik.parser.style declared as CSSValue
protected  CSSValue[] CSSValueListValue.table
          The table that contains the values.
static CSSValue AbstractCSSValueFactory.INHERIT
          The 'inherit' value.
static CSSValue AbstractCSSValueFactory.AUTO_VALUE
          The 'auto' identifier.
 

Methods in org.apache.batik.parser.style that return CSSValue
 CSSValue AbstractCSSValue.item(int index)
          DOM: Implements CSSValueList.item(int).
 CSSValue StyleAttributeParser.parse(java.io.Reader r, java.lang.String ns, java.lang.String ln)
          Parses the given reader and returns the CSSValue object corresponding to the attribute with the given namespaceURI and localName.
 CSSValue CSSValueListValue.item(int index)
          DOM: Implements CSSValueList.item(int).
 CSSValue CSSValueFactory.createCSSValue(LexicalUnit l)
          Returns a CSSValue built from the given SAC lexical unit.
 CSSValue AbstractLengthFactory.createCSSValue(LexicalUnit lu)
          Returns a CSSValue built from the given SAC lexical unit.
 CSSValue AbstractRectFactory.createCSSValue(LexicalUnit lu)
          Returns a CSSValue built from the given SAC lexical unit.
 CSSValue ClipFactory.createCSSValue(LexicalUnit lu)
          Returns a CSSValue built from the given SAC lexical unit.
 CSSValue LengthFactory.createCSSValue(LexicalUnit lu)
          Returns a CSSValue built from the given SAC lexical unit.
 

Methods in org.apache.batik.parser.style with parameters of type CSSValue
 void CSSValueListValue.append(CSSValue item)
          Appends an item to the list.
 

Uses of CSSValue in org.w3c.dom.css
 

Subinterfaces of CSSValue in org.w3c.dom.css
 interface CSSPrimitiveValue
          The CSSPrimitiveValue interface represents a single CSS value .
 interface CSSValueList
          The CSSValueList interface provides the abstraction of an ordered collection of CSS values.
 

Methods in org.w3c.dom.css that return CSSValue
 CSSValue CSSStyleDeclaration.getPropertyCSSValue(java.lang.String propertyName)
          Used to retrieve the object representation of the value of a CSS property if it has been explicitly set within this declaration block.
 CSSValue CSSValueList.item(int index)
          Used to retrieve a CSSValue by ordinal index.
 

Uses of CSSValue in org.w3c.dom.svg
 

Subinterfaces of CSSValue in org.w3c.dom.svg
 interface SVGColor
           
 interface SVGPaint
           
 

Methods in org.w3c.dom.svg that return CSSValue
 CSSValue SVGStylable.getPresentationAttribute(java.lang.String name)
           
 



Copyright © 2001 Apache Software Foundation. All Rights Reserved.