Package org.apache.batik.apps.rasterizer
Class Main.ColorOptionHandler
java.lang.Object
org.apache.batik.apps.rasterizer.Main.AbstractOptionHandler
org.apache.batik.apps.rasterizer.Main.SingleValueOptionHandler
org.apache.batik.apps.rasterizer.Main.ColorOptionHandler
- All Implemented Interfaces:
Main.OptionHandler
- Enclosing class:
Main
Base class for options which expect a
Color optionValue.
Subclasses should implement the handleOption method which
takes a Color and an SVGConverter as parameters.-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract voidhandleOption(Color color, SVGConverter c) voidhandleOption(String optionValue, SVGConverter c) Parse the input value, which should be in the following format: a.r.g.b where a, r, g and b are integer values, in decimal notation, between 0 and 255.Methods inherited from class org.apache.batik.apps.rasterizer.Main.SingleValueOptionHandler
getOptionValuesLength, safeHandleOptionMethods inherited from class org.apache.batik.apps.rasterizer.Main.AbstractOptionHandler
handleOptionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.batik.apps.rasterizer.Main.OptionHandler
getOptionDescription
-
Constructor Details
-
ColorOptionHandler
public ColorOptionHandler()
-
-
Method Details
-
handleOption
- Specified by:
handleOptionin classMain.SingleValueOptionHandler
-
handleOption
-
parseARGB
Parse the input value, which should be in the following format: a.r.g.b where a, r, g and b are integer values, in decimal notation, between 0 and 255.- Returns:
- the parsed color if successful. null otherwise.
-