Uses of Class
de.enough.polish.preprocess.css.CssAttribute

Packages that use CssAttribute
de.enough.polish.preprocess.css   
de.enough.polish.preprocess.css.attributes   
 

Uses of CssAttribute in de.enough.polish.preprocess.css
 

Methods in de.enough.polish.preprocess.css that return CssAttribute
 CssAttribute CssAttributesManager.createCssAttribute(org.jdom.Element definition)
          Adds a new CSS attribute.
 CssAttribute[] CssAttributesManager.getApplicableAttributes(Class targetClass)
          Retrieves all attributes for the given class.
 CssAttribute CssAttributesManager.getAttribute(int id)
          Retrieves the attribute with the given ID-key.
 CssAttribute CssAttributesManager.getAttribute(String name)
          Retrieves the specified attribute.
 CssAttribute[] CssAttributesManager.getAttributes()
           
 CssAttribute ParameterizedCssMapping.getParameter(String name)
          Retrieves the specfied attribute.
 CssAttribute[] ParameterizedCssMapping.getParameters()
          Retrieves all known parameters
 CssAttribute CssAttributesManager.getType(String name)
          Retrieves the specified attribute.
 

Methods in de.enough.polish.preprocess.css with parameters of type CssAttribute
 void CssAttribute.add(CssAttribute extension)
          Adds the mappings of the given capability to this one.
 void CssAttributesManager.addImplicitAttribute(CssAttribute param, String mappingFrom, CssAttribute paramParent)
          Adds an implicit attribute definition for a background or border parameter
 String ParameterizedAttributeConverter.createNewStatement(CssAttribute attribute, ParameterizedCssMapping mapping, AttributesGroup cssValues, Environment environment)
           
 void CssAttribute.setImplicitDefinition(String implicitName, CssAttribute param)
           
 

Constructors in de.enough.polish.preprocess.css with parameters of type CssAttribute
ParameterizedCssMapping(CssAttribute parent, org.jdom.Element definition)
          Creates a new mapping.
 

Uses of CssAttribute in de.enough.polish.preprocess.css.attributes
 

Subclasses of CssAttribute in de.enough.polish.preprocess.css.attributes
 class ArrayCssAttribute
          Allows to use any CssAttribute/type as an array
 class BooleanCssAttribute
          A simple boolean based attribute.
 class CharCssAttribute
          A simple character based attribute.
 class ColorCssAttribute
          A simple character based attribute.
 class ColumnsWidthCssAttribute
          The columns-width CSS attribute is a specialized one.
 class ConverterCssAttribute
          A CSS attribute that requires a converter for the correct processing.
 class DimensionCssAttribute
          Wraps a numerical value that may have a unit such as 'px' (pixel), '%' (percent), 'em' (font height).
 class DimensionMapCssAttribute
          An attribute that consists of a mapped value or a combination.
 class ImageUrlCssAttribute
          An attribute pointing to an image.
 class ImageUrlOrNoneCssAttribute
          A simple numerical based attribute.
 class ImageUrlsCssAttribute
          An attribute pointing to an image.
 class IntegerCssAttribute
          A simple numerical attribute.
 class MapCssAttribute
          An attribute that consists of a mapped value or a combination.
 class ObjectCssAttribute
          A Object based attribute.
 class ParameterizedCssAttribute
          A CSS attribute that can contain several complex parameters, e.g.
 class PercentCssAttribute
          A numerical attribute given in percent, negative and values over 100% are also allowed.
 class PointCssAttribute
          Represents a two-dimensional point
 class ResourceUrlCssAttribute
          An attribute pointing to a resource url.
 class StringCssAttribute
          A simple string based attribute.
 class StyleCssAttribute
          A attribute referring to a style.
 class TimeMsCssAttribute
          A time interval in milliseonds - sample value: 2s == 2000 ms == 2000.
 class WrappedCssAttribute
          Wraps an existing CssAttribute under a new name.
 

Fields in de.enough.polish.preprocess.css.attributes declared as CssAttribute
protected  CssAttribute WrappedCssAttribute.parent
           
 

Methods in de.enough.polish.preprocess.css.attributes with parameters of type CssAttribute
 void WrappedCssAttribute.add(CssAttribute extension)
           
 

Constructors in de.enough.polish.preprocess.css.attributes with parameters of type CssAttribute
WrappedCssAttribute(CssAttribute parent, org.jdom.Element definition)