Interface IColorConfiguration
-
- All Superinterfaces:
IPatternConfiguration
public interface IColorConfiguration extends IPatternConfiguration
The Interface IColorConfiguration.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IColorConstantgetBackgroundColor()Gets the background color.IColorConstantgetForegroundColor()Gets the foreground color.IColorConstantgetTextColor()Gets the text color.doublegetTransparency()Gets the transparency.voidsetBackgroundColor(IColorConstant color)Sets the background color.voidsetForegroundColor(IColorConstant color)Sets the foreground color.voidsetTextColor(IColorConstant color)Sets the text color.voidsetTransparency(double transparency)Sets the transparency.
-
-
-
Method Detail
-
getBackgroundColor
IColorConstant getBackgroundColor()
Gets the background color.- Returns:
- the background color
-
getForegroundColor
IColorConstant getForegroundColor()
Gets the foreground color.- Returns:
- the foreground color
-
getTextColor
IColorConstant getTextColor()
Gets the text color.- Returns:
- the text color
-
setBackgroundColor
void setBackgroundColor(IColorConstant color)
Sets the background color.- Parameters:
color- the new background color
-
setForegroundColor
void setForegroundColor(IColorConstant color)
Sets the foreground color.- Parameters:
color- the new foreground color
-
setTextColor
void setTextColor(IColorConstant color)
Sets the text color.- Parameters:
color- the new text color
-
getTransparency
double getTransparency()
Gets the transparency.- Returns:
- the transparency
-
setTransparency
void setTransparency(double transparency)
Sets the transparency.- Parameters:
transparency- the new transparency
-
-