Package org.apache.batik.css.dom
Interface CSSOMSVGColor.ModificationHandler
-
- All Known Subinterfaces:
CSSOMSVGPaint.PaintModificationHandler
- All Known Implementing Classes:
CSSOMSVGColor.AbstractModificationHandler,CSSOMSVGPaint.AbstractModificationHandler
- Enclosing class:
- CSSOMSVGColor
public static interface CSSOMSVGColor.ModificationHandlerTo manage the modifications on a CSS value.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidblueFloatValueChanged(short unit, float value)Called when the blue float value has changed.voidblueTextChanged(java.lang.String text)Called when the blue value text has changed.voidcolorAppend(float f)Called when the ICC color has been append.voidcolorChanged(short type, java.lang.String rgb, java.lang.String icc)Called when the SVGColor has changed.voidcolorInsertedBefore(float f, int idx)Called when the ICC color has been inserted.voidcolorProfileChanged(java.lang.String cp)Called when the ICC color profile has changed.voidcolorRemoved(int idx)Called when the ICC color has been removed.voidcolorReplaced(float f, int idx)Called when the ICC color has been replaced.voidcolorsCleared()Called when the ICC colors has changed.voidcolorsInitialized(float f)Called when the ICC colors has been initialized.voidgreenFloatValueChanged(short unit, float value)Called when the green float value has changed.voidgreenTextChanged(java.lang.String text)Called when the green value text has changed.voidredFloatValueChanged(short unit, float value)Called when the red float value has changed.voidredTextChanged(java.lang.String text)Called when the red value text has changed.voidrgbColorChanged(java.lang.String text)Called when the RGBColor text has changed.voidrgbColorICCColorChanged(java.lang.String rgb, java.lang.String icc)Called when the RGBColor and the ICCColor text has changed.voidtextChanged(java.lang.String text)Called when the value text has changed.
-
-
-
Method Detail
-
textChanged
void textChanged(java.lang.String text) throws org.w3c.dom.DOMExceptionCalled when the value text has changed.- Throws:
org.w3c.dom.DOMException
-
redTextChanged
void redTextChanged(java.lang.String text) throws org.w3c.dom.DOMExceptionCalled when the red value text has changed.- Throws:
org.w3c.dom.DOMException
-
redFloatValueChanged
void redFloatValueChanged(short unit, float value) throws org.w3c.dom.DOMExceptionCalled when the red float value has changed.- Throws:
org.w3c.dom.DOMException
-
greenTextChanged
void greenTextChanged(java.lang.String text) throws org.w3c.dom.DOMExceptionCalled when the green value text has changed.- Throws:
org.w3c.dom.DOMException
-
greenFloatValueChanged
void greenFloatValueChanged(short unit, float value) throws org.w3c.dom.DOMExceptionCalled when the green float value has changed.- Throws:
org.w3c.dom.DOMException
-
blueTextChanged
void blueTextChanged(java.lang.String text) throws org.w3c.dom.DOMExceptionCalled when the blue value text has changed.- Throws:
org.w3c.dom.DOMException
-
blueFloatValueChanged
void blueFloatValueChanged(short unit, float value) throws org.w3c.dom.DOMExceptionCalled when the blue float value has changed.- Throws:
org.w3c.dom.DOMException
-
rgbColorChanged
void rgbColorChanged(java.lang.String text) throws org.w3c.dom.DOMExceptionCalled when the RGBColor text has changed.- Throws:
org.w3c.dom.DOMException
-
rgbColorICCColorChanged
void rgbColorICCColorChanged(java.lang.String rgb, java.lang.String icc) throws org.w3c.dom.DOMExceptionCalled when the RGBColor and the ICCColor text has changed.- Throws:
org.w3c.dom.DOMException
-
colorChanged
void colorChanged(short type, java.lang.String rgb, java.lang.String icc) throws org.w3c.dom.DOMExceptionCalled when the SVGColor has changed.- Throws:
org.w3c.dom.DOMException
-
colorProfileChanged
void colorProfileChanged(java.lang.String cp) throws org.w3c.dom.DOMExceptionCalled when the ICC color profile has changed.- Throws:
org.w3c.dom.DOMException
-
colorsCleared
void colorsCleared() throws org.w3c.dom.DOMExceptionCalled when the ICC colors has changed.- Throws:
org.w3c.dom.DOMException
-
colorsInitialized
void colorsInitialized(float f) throws org.w3c.dom.DOMExceptionCalled when the ICC colors has been initialized.- Throws:
org.w3c.dom.DOMException
-
colorInsertedBefore
void colorInsertedBefore(float f, int idx) throws org.w3c.dom.DOMExceptionCalled when the ICC color has been inserted.- Throws:
org.w3c.dom.DOMException
-
colorReplaced
void colorReplaced(float f, int idx) throws org.w3c.dom.DOMExceptionCalled when the ICC color has been replaced.- Throws:
org.w3c.dom.DOMException
-
colorRemoved
void colorRemoved(int idx) throws org.w3c.dom.DOMExceptionCalled when the ICC color has been removed.- Throws:
org.w3c.dom.DOMException
-
colorAppend
void colorAppend(float f) throws org.w3c.dom.DOMExceptionCalled when the ICC color has been append.- Throws:
org.w3c.dom.DOMException
-
-