javax.swing.text.html
Class CSS.StringValue

java.lang.Object
  extended byjavax.swing.text.html.CSS.CssValue
      extended byjavax.swing.text.html.CSS.StringValue
All Implemented Interfaces:
Serializable
Enclosing class:
CSS

static class CSS.StringValue
extends CSS.CssValue

By default CSS attributes are represented as simple strings. They also have no conversion to/from StyleConstants by default. This class represents the value as a string (via the superclass), but provides StyleConstants conversion support for the CSS attributes that are held as strings.


Field Summary
(package private)  String svalue
          The value as a string... before conversion to a binary format.
 
Constructor Summary
(package private) CSS.StringValue()
           
 
Method Summary
(package private)  Object fromStyleConstants(StyleConstants key, Object value)
          Converts a StyleConstants attribute value to a CSS attribute value.
(package private)  boolean isItalic()
           
(package private)  boolean isStrike()
           
(package private)  boolean isSub()
           
(package private)  boolean isSup()
           
(package private)  boolean isUnderline()
           
(package private)  Object parseCssValue(String value)
          Convert a CSS value string to the internal format (for fast processing) used in the attribute sets.
(package private)  Object parseHtmlValue(String value)
          Convert an HTML attribute value to a CSS attribute value.
 String toString()
          Return the CSS format of the value
(package private)  Object toStyleConstants(StyleConstants key, View v)
          Converts a CSS attribute value to a StyleConstants value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

svalue

String svalue
The value as a string... before conversion to a binary format.

Constructor Detail

CSS.StringValue

CSS.StringValue()
Method Detail

parseCssValue

Object parseCssValue(String value)
Convert a CSS value string to the internal format (for fast processing) used in the attribute sets. This produces a StringValue, so that it can be used to convert from CSS to StyleConstants values.

Overrides:
parseCssValue in class CSS.CssValue

fromStyleConstants

Object fromStyleConstants(StyleConstants key,
                          Object value)
Converts a StyleConstants attribute value to a CSS attribute value. If there is no conversion returns null.

Overrides:
fromStyleConstants in class CSS.CssValue
Parameters:
key - the StyleConstants attribute
value - the value of a StyleConstants attribute to be converted
Returns:
the CSS value that represents the StyleConstants value

toStyleConstants

Object toStyleConstants(StyleConstants key,
                        View v)
Converts a CSS attribute value to a StyleConstants value. If there is no conversion, returns null. By default, there is no conversion.

Overrides:
toStyleConstants in class CSS.CssValue
Parameters:
key - the StyleConstants attribute
v - the view containing AttributeSet
Returns:
the StyleConstants attribute value that represents the CSS attribute value

isItalic

boolean isItalic()

isStrike

boolean isStrike()

isUnderline

boolean isUnderline()

isSub

boolean isSub()

isSup

boolean isSup()

parseHtmlValue

Object parseHtmlValue(String value)
Convert an HTML attribute value to a CSS attribute value. If there is no conversion, return null. This is implemented to simply forward to the CSS parsing by default (since some of the attribute values are the same). If the attribute value isn't recognized as a CSS value it is generally returned as null.


toString

public String toString()
Return the CSS format of the value

Overrides:
toString in class Object
Returns:
a string representation of the object.