public class AwtParameters extends Parameters
| Modifier and Type | Field and Description |
|---|---|
static java.awt.Color[] |
defaultPlotColors |
integralDrawAll, integralMinY, integralOffset, integralRange, numberFormat, peakListInterpolation, peakListThreshold| Constructor and Description |
|---|
AwtParameters(java.lang.String name) |
| Modifier and Type | Method and Description |
|---|---|
static java.lang.String |
colorToHexString(java.lang.Object oColor)
Returns a hex string representation of a
Color object |
static java.awt.Color |
getColorFromString(java.lang.String strColor)
Returns a
Color from a string representation as a hex value or
a delimiter separated rgb values. |
copy, copy, getBoolean, getBooleans, getColor, getColors, getDisplayFont, getName, getTFToggle, getTitleFont, isDefault, isTrue, putInfo, set, setBoolean, setColor, setDefault, setDisplayFont, setFor, setName, setTitleFontpublic static java.lang.String colorToHexString(java.lang.Object oColor)
Color objectoColor - the ColorColor objectpublic static java.awt.Color getColorFromString(java.lang.String strColor)
Color from a string representation as a hex value or
a delimiter separated rgb values. The following are all valid arguments:
"#ffffff" "#FFFFFF" "255 255 255" "255,255,255" "255;255;255" "255-255-255" "255.255.255"
strColor - Color from a string representation