Module com.googlecode.lanterna
Package com.googlecode.lanterna.graphics
Class AbstractTheme.StyleImpl
- java.lang.Object
-
- com.googlecode.lanterna.graphics.AbstractTheme.StyleImpl
-
- All Implemented Interfaces:
ThemeStyle
- Enclosing class:
- AbstractTheme
private class AbstractTheme.StyleImpl extends java.lang.Object implements ThemeStyle
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.Stringnameprivate AbstractTheme.ThemeTreeNodestyleNode
-
Constructor Summary
Constructors Modifier Constructor Description privateStyleImpl(AbstractTheme.ThemeTreeNode node, java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TextColorgetBackground()Returns the background color associated with this styleTextColorgetForeground()Returns the foreground color associated with this stylejava.util.EnumSet<SGR>getSGRs()Returns the set of SGR flags associated with this style.
-
-
-
Field Detail
-
styleNode
private final AbstractTheme.ThemeTreeNode styleNode
-
name
private final java.lang.String name
-
-
Constructor Detail
-
StyleImpl
private StyleImpl(AbstractTheme.ThemeTreeNode node, java.lang.String name)
-
-
Method Detail
-
getForeground
public TextColor getForeground()
Description copied from interface:ThemeStyleReturns the foreground color associated with this style- Specified by:
getForegroundin interfaceThemeStyle- Returns:
- foreground color associated with this style
-
getBackground
public TextColor getBackground()
Description copied from interface:ThemeStyleReturns the background color associated with this style- Specified by:
getBackgroundin interfaceThemeStyle- Returns:
- background color associated with this style
-
getSGRs
public java.util.EnumSet<SGR> getSGRs()
Description copied from interface:ThemeStyleReturns the set of SGR flags associated with this style. ThisEnumSetis either unmodifiable or a copy so altering it will not change the theme in any way.- Specified by:
getSGRsin interfaceThemeStyle- Returns:
- SGR flags associated with this style
-
-