Class SystemConsolePreferencesManager
- All Implemented Interfaces:
BeanInterface,PropertyChangeFirer,PropertyChangeProvider,JmriServiceProviderInterface,PreferencesManager
SystemConsole.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringstatic final Stringstatic final Stringstatic final StringFields inherited from class jmri.beans.Bean
propertyChangeSupport -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintintgetInitializationExceptions(Profile profile) Get the set of exceptions thrown during initialization for the provided Profile.Get the set of Classes that this PreferencesManager can be registered as a provider of in theInstanceManager.Collection<Class<? extends PreferencesManager>>Get the set of PreferencesManagers that must be initialized prior to initializing this PreferencesManager.intintvoidinitialize(Profile profile) Initialize the PreferencesManager with preferences associated with the provided Profile.booleanisInitialized(Profile profile) Test if the PreferencesManager is initialized without errors for the provided Profile.booleanisInitializedWithExceptions(Profile profile) Test if the PreferencesManager is initialized, but threw anInitializationExceptionduring initialization, for the provided Profile.voidsavePreferences(Profile profile) Save the preferences that this provider manages for the provided Profile.voidsetFontSize(int fontSize) Sets the fontSize.voidsetFontStyle(int fontStyle) voidsetScheme(int scheme) voidsetWrapStyle(int wrapStyle) Methods inherited from class jmri.beans.Bean
addPropertyChangeListener, addPropertyChangeListener, fireIndexedPropertyChange, fireIndexedPropertyChange, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getPropertyChangeListeners, getPropertyChangeListeners, isNotifyOnEDT, removePropertyChangeListener, removePropertyChangeListenerMethods inherited from class jmri.beans.UnboundBean
getIndexedProperty, getProperty, getPropertyNames, hasIndexedProperty, hasProperty, setIndexedProperty, setProperty
-
Field Details
-
SCHEME
- See Also:
-
FONT_SIZE
- See Also:
-
FONT_STYLE
- See Also:
-
WRAP_STYLE
- See Also:
-
-
Constructor Details
-
SystemConsolePreferencesManager
public SystemConsolePreferencesManager()
-
-
Method Details
-
initialize
Description copied from interface:PreferencesManagerInitialize the PreferencesManager with preferences associated with the provided Profile.Implementing classes should throw an InitializationException with a user readable localized message, since it most likely be displayed to the user. Implementing classes will still want to ensure that
PreferencesManager.isInitialized(jmri.profile.Profile)orPreferencesManager.isInitializedWithExceptions(jmri.profile.Profile)return true if throwing an InitializationException to ensure that the provider is not repeatedly initialized.- Specified by:
initializein interfacePreferencesManager- Parameters:
profile- the configuration profile used for this initialization; may be null to initialize for this user regardless of profile- Throws:
InitializationException- if the user needs to be notified of an issue that prevents regular use of the application
-
savePreferences
Description copied from interface:PreferencesManagerSave the preferences that this provider manages for the provided Profile.- Specified by:
savePreferencesin interfacePreferencesManager- Parameters:
profile- the profile associated with the preferences to save; may be null to save preferences that apply to the current user regardless of profile
-
isInitialized
Description copied from interface:PreferencesManagerTest if the PreferencesManager is initialized without errors for the provided Profile. Note that although both this method andPreferencesManager.isInitializedWithExceptions(jmri.profile.Profile)can be false, if isInitializedWithExceptions(Profile) returns true, this method must return false.- Specified by:
isInitializedin interfacePreferencesManager- Parameters:
profile- the configuration profile to test against; may be null to test for exceptions thrown when initializing for this user regardless of profile- Returns:
- true if the provider is initialized without exceptions
-
getRequires
Description copied from interface:PreferencesManagerGet the set of PreferencesManagers that must be initialized prior to initializing this PreferencesManager. It is generally preferable to require an Interface or an abstract Class instead of a concrete Class, since that allows all (or any) concrete implementations of the required class to be initialized to provide required services for the requiring PreferencesManager instance.Note that for any set of PreferencesManagers with the same requirements, or with a circular dependency between each other, the order in which the PreferencesManagers in that set are initialized should be considered non-deterministic.
- Specified by:
getRequiresin interfacePreferencesManager- Returns:
- A set or list of classes. If there are no dependencies, return an empty set instead of null.
-
getProvides
Description copied from interface:PreferencesManagerGet the set of Classes that this PreferencesManager can be registered as a provider of in theInstanceManager.- Specified by:
getProvidesin interfacePreferencesManager- Returns:
- A set or list of classes. If this PreferencesManager provides an instance of no other Interfaces or abstract Classes than PreferencesManager, return an empty set instead of null.
-
getScheme
- Returns:
- the scheme
-
setScheme
- Parameters:
scheme- the scheme to set
-
getFontSize
- Returns:
- the fontSize
-
setFontSize
Sets the fontSize.If the parameter is less than 6, the fontSize is set to 6. If the parameter is greater than 24, the fontSize is set to 24.
- Parameters:
fontSize- the fontSize to set
-
getFontStyle
- Returns:
- the fontStyle
-
setFontStyle
- Parameters:
fontStyle- one ofFont.BOLD,Font.ITALIC, orFont.PLAIN.
-
getWrapStyle
- Returns:
- the wrapStyle
-
setWrapStyle
- Parameters:
wrapStyle- One ofSystemConsole.WRAP_STYLE_LINE,SystemConsole.WRAP_STYLE_NONE, orSystemConsole.WRAP_STYLE_WORD.
-
isInitializedWithExceptions
Description copied from interface:PreferencesManagerTest if the PreferencesManager is initialized, but threw anInitializationExceptionduring initialization, for the provided Profile. Note that although both this method andPreferencesManager.isInitialized(jmri.profile.Profile)can be false, if isInitialized(Profile) returns true, this method must return false.- Specified by:
isInitializedWithExceptionsin interfacePreferencesManager- Parameters:
profile- the configuration profile to test against; may be null to test for exceptions thrown when initializing for this user regardless of profile- Returns:
- true if the provide is initialized with exceptions
-
getInitializationExceptions
Description copied from interface:PreferencesManagerGet the set of exceptions thrown during initialization for the provided Profile.- Specified by:
getInitializationExceptionsin interfacePreferencesManager- Parameters:
profile- the configuration profile to test against; may be null to test for exceptions thrown when initializing for this user regardless of profile- Returns:
- A list of exceptions. If there are no exceptions, return an empty set instead of null.
-