com.google.gwt.resources.css.ast
Class CssProperty.ListValue

java.lang.Object
  extended by com.google.gwt.resources.css.ast.CssProperty.Value
      extended by com.google.gwt.resources.css.ast.CssProperty.ListValue
Enclosing class:
CssProperty

public static class CssProperty.ListValue
extends CssProperty.Value

Represents a space-separated list of Values.


Constructor Summary
CssProperty.ListValue(CssProperty.Value... values)
           
CssProperty.ListValue(java.util.List<CssProperty.Value> values)
           
 
Method Summary
 java.lang.String getExpression()
          Generate a Java expression whose execution results in the value.
 java.util.List<CssProperty.Value> getValues()
           
 CssProperty.ListValue isListValue()
           
 java.lang.String toCss()
          Generate a CSS expression that represents the Value.
 
Methods inherited from class com.google.gwt.resources.css.ast.CssProperty.Value
isDotPathValue, isExpressionValue, isIdentValue, isNumberValue, isSpaceRequired, isStringValue, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

CssProperty.ListValue

public CssProperty.ListValue(java.util.List<CssProperty.Value> values)

CssProperty.ListValue

public CssProperty.ListValue(CssProperty.Value... values)
Method Detail

getExpression

public java.lang.String getExpression()
Description copied from class: CssProperty.Value
Generate a Java expression whose execution results in the value.

Specified by:
getExpression in class CssProperty.Value

getValues

public java.util.List<CssProperty.Value> getValues()

isListValue

public CssProperty.ListValue isListValue()
Overrides:
isListValue in class CssProperty.Value

toCss

public java.lang.String toCss()
Description copied from class: CssProperty.Value
Generate a CSS expression that represents the Value.

Specified by:
toCss in class CssProperty.Value