Files
CS480-Personal-Navigation-S…/PA5/src/geography/ThemeLibrary.java
T

24 lines
413 B
Java
Raw Normal View History

2026-05-31 14:39:57 -04:00
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);
}