Package com.iizigo.prop.editor
Class DropShadowValidator
- java.lang.Object
- com.iizigo.prop.editor.DropShadowValidator
public class DropShadowValidator extends java.lang.ObjectThe drop shadow validator.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description GUnitblurThe blur, null if not parsed.GColorcolorThe color, null if not parsed.java.lang.StringerrorPotential error.GUnithorzThe horizontal unit, null if not parsed.java.lang.StringinputThe input string.booleantooManyParamsToo many params causes this flag to be set, "error" is null.GUnitvertThe vertical unit, null if not parsed.
Constructor Summary
Constructors Constructor Description DropShadowValidator(java.lang.String input)Creates the validator for an input.
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCSSValue()Gets the parameters that were successfully parsed.
Field Detail
input
public final java.lang.String input
The input string.
horz
public GUnit horz
The horizontal unit, null if not parsed.
vert
public GUnit vert
The vertical unit, null if not parsed.
blur
public GUnit blur
The blur, null if not parsed.
color
public GColor color
The color, null if not parsed.
error
public java.lang.String error
Potential error.
tooManyParams
public boolean tooManyParams
Too many params causes this flag to be set, "error" is null.