ij.plugin
Class Colors
java.lang.Object
ij.plugin.Colors
- All Implemented Interfaces:
- PlugIn, ItemListener, EventListener
public class Colors
- extends Object
- implements PlugIn, ItemListener
This plugin implements most of the Edit/Options/Colors command.
|
Method Summary |
static String |
colorToString(Color color)
Converts a Color into a string ("red", "green", #aa55ff, etc.). |
static Color |
decode(String hexColor,
Color defaultColor)
|
static Color |
getColor(String name,
Color defaultColor)
|
static String |
getColorName(Color c,
String defaultName)
|
static String |
hexToColor(String hex)
Converts a hex color (e.g., "ffff00") into "red", "green", "yellow", etc. |
void |
itemStateChanged(ItemEvent e)
|
void |
run(String arg)
This method is called when the plugin is loaded. |
colors
public static final String[] colors
Colors
public Colors()
run
public void run(String arg)
- Description copied from interface:
PlugIn
- This method is called when the plugin is loaded.
'arg', which may be blank, is the argument specified
for this plugin in IJ_Props.txt.
- Specified by:
run in interface PlugIn
getColorName
public static String getColorName(Color c,
String defaultName)
getColor
public static Color getColor(String name,
Color defaultColor)
decode
public static Color decode(String hexColor,
Color defaultColor)
hexToColor
public static String hexToColor(String hex)
- Converts a hex color (e.g., "ffff00") into "red", "green", "yellow", etc.
Returns null if the color is not one of the eight primary colors.
colorToString
public static String colorToString(Color color)
- Converts a Color into a string ("red", "green", #aa55ff, etc.).
itemStateChanged
public void itemStateChanged(ItemEvent e)
- Specified by:
itemStateChanged in interface ItemListener
jHepWork 3.2 © jWork.org