public class

CssProperty

extends CssNode
java.lang.Object
   ↳ com.google.gwt.resources.css.ast.CssNode
     ↳ com.google.gwt.resources.css.ast.CssProperty

Class Overview

Maps a named property to a Value.

Summary

Nested Classes
class CssProperty.DotPathValue Represents a sequence of no-arg method invocations. 
class CssProperty.ExpressionValue Represents a literal Java expression. 
class CssProperty.IdentValue Represents an identifier in the CSS source. 
class CssProperty.ListValue Represents a space-separated list of Values. 
class CssProperty.NumberValue Represents a numeric value, possibly with attached units. 
class CssProperty.StringValue Represents one or more quoted string literals. 
class CssProperty.TokenValue Represents a token in the CSS source. 
class CssProperty.Value An abstract encapsulation of property values in GWT CSS. 
Public Constructors
CssProperty(String name, CssProperty.Value value, boolean important)
Public Methods
String getName()
CssProperty.ListValue getValues()
boolean isImportant()
void setImportant(boolean important)
void setName(String name)
void setValue(CssProperty.Value value)
void traverse(CssVisitor visitor, Context context)
[Expand]
Inherited Methods
From class com.google.gwt.resources.css.ast.CssNode
From class java.lang.Object
From interface com.google.gwt.resources.css.ast.CssVisitable

Public Constructors

public CssProperty (String name, CssProperty.Value value, boolean important)

Public Methods

public String getName ()

public CssProperty.ListValue getValues ()

public boolean isImportant ()

public void setImportant (boolean important)

public void setName (String name)

public void setValue (CssProperty.Value value)

public void traverse (CssVisitor visitor, Context context)