Package com.iizigo.prop.editor
Class DropShadowValidator
- java.lang.Object
- com.iizigo.prop.editor.DropShadowValidator
public class DropShadowValidator extends java.lang.Object
The drop shadow validator.- Author:
- Christopher Mindus
Field Summary
Fields Modifier and Type Field Description GUnit
blur
The blur, null if not parsed.GColor
color
The color, null if not parsed.java.lang.String
error
Potential error.GUnit
horz
The horizontal unit, null if not parsed.java.lang.String
input
The input string.boolean
tooManyParams
Too many params causes this flag to be set, "error" is null.GUnit
vert
The 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.String
getCSSValue()
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.