getDisplayName method
Gets colour's display name
Implementation
String getDisplayName()
{
if (isEmpty) {
return EMPTY_COLOUR_DISPLAY_NAME;
}
else {
return toHtmlHexTriplet();
}
}
Gets colour's display name
String getDisplayName()
{
if (isEmpty) {
return EMPTY_COLOUR_DISPLAY_NAME;
}
else {
return toHtmlHexTriplet();
}
}