Class PreferencesEntry
- java.lang.Object
-
- org.citydb.plugin.extension.preferences.PreferencesEntry
-
public abstract class PreferencesEntry extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description PreferencesEntry()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description void
addChildEntry(PreferencesEntry child)
java.util.List<PreferencesEntry>
getChildEntries()
abstract java.lang.String
getLocalizedTitle()
abstract java.awt.Component
getViewComponent()
abstract boolean
handleEvent(PreferencesEvent event)
abstract boolean
isModified()
-
-
-
Method Detail
-
isModified
public abstract boolean isModified()
-
handleEvent
public abstract boolean handleEvent(PreferencesEvent event)
-
getLocalizedTitle
public abstract java.lang.String getLocalizedTitle()
-
getViewComponent
public abstract java.awt.Component getViewComponent()
-
addChildEntry
public void addChildEntry(PreferencesEntry child)
-
getChildEntries
public java.util.List<PreferencesEntry> getChildEntries()
-
-