First commit, added all projects
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
package geography;
|
||||
|
||||
/**
|
||||
* Interface for theme libraries that provide rendering themes.
|
||||
*/
|
||||
public interface ThemeLibrary
|
||||
{
|
||||
/**
|
||||
* Get the theme for highlighted elements.
|
||||
*
|
||||
* @return The highlight theme
|
||||
*/
|
||||
Theme getHighlightTheme();
|
||||
|
||||
/**
|
||||
* Get the theme for a given code.
|
||||
*
|
||||
* @param code
|
||||
* The theme code
|
||||
* @return The theme
|
||||
*/
|
||||
Theme getTheme(final String code);
|
||||
}
|
||||
Reference in New Issue
Block a user