Class Theme
- All Implemented Interfaces:
ITheme
-
Constructor Summary
Constructors
Initializes a new instance of the Theme class with the specified theme name.
Initializes a new instance of the Theme class with the specified theme name and base theme.
-
Method Summary
Gets the name of the theme.
Represents a color scheme within the theme.
Represents a font scheme within the theme.
final boolean
Gets whether the theme is a built-in theme.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
Theme
public Theme(String themeName)
Initializes a new instance of the Theme class with the specified theme name.
- Parameters:
themeName
- The name of the theme.
-
Theme
Initializes a new instance of the Theme class with the specified theme name and base theme.
- Parameters:
themeName
- The name of the theme.
baseTheme
- The base theme to initialize from.
-
Method Details
-
getName
Gets the name of the theme.
- Specified by:
getName
in interface ITheme
-
isBuiltIn
public final boolean isBuiltIn()
Gets whether the theme is a built-in theme.
- Specified by:
isBuiltIn
in interface ITheme
-
-