Uses of Interface
com.tensegrity.generic.util.prefs.Preferences

Packages that use Preferences
com.tensegrity.application This package contains the main interfaces and meta classes for the skeleton framework.  
com.tensegrity.generic.util.prefs Contains interfaces and classes that is helpful for dealing with persistent application settings. 
com.tensegrity.gui.document.persistence   
com.tensegrity.gui.graphdocument This package contains the GraphDocument interface, a Factory for creating such documents as well as a definition for a panel which may hold such documents.  
com.tensegrity.gui.graphdocument.persistence   
com.tensegrity.gui.swing.document This package contains all of the current document implementations for use in a swing-based environment.  
com.tensegrity.gui.swing.document.persistence   
com.tensegrity.gui.swt.document.persitence   
com.tensegrity.skeleton.container.swing The swing implementations of all currently available ToolContainer types. 
com.tensegrity.skeleton.launch   
 

Uses of Preferences in com.tensegrity.application
 

Methods in com.tensegrity.application that return Preferences
 Preferences DefaultGraphApplication.getPreferences()
           
 Preferences ApplicationFrame.getPreferences()
          Deprecated. use Application.getPreferences() instead!
 Preferences Application.getPreferences()
          Returns the Preferences instance used by this Application.
 

Methods in com.tensegrity.application with parameters of type Preferences
 void DefaultGraphApplication.setPreferences(Preferences preferences)
           
 void ApplicationFrame.setPreferences(Preferences preferences)
          Deprecated. use Application.setPreferences(Preferences) instead!
 void Application.setPreferences(Preferences preferences)
          Sets the Preferences instance used by this Application.
 

Uses of Preferences in com.tensegrity.generic.util.prefs
 

Methods in com.tensegrity.generic.util.prefs that return Preferences
static Preferences PreferenceFactory.createPreferences(java.lang.String defaultFileName, java.lang.Class resourceClass, java.lang.String writeOutName)
          Constructor specifying a default file name, a resource class used to load this file and a write out name for the file holding the preferences.
 

Methods in com.tensegrity.generic.util.prefs with parameters of type Preferences
static void PreferenceUtilities.addToFifoList(Preferences prefs, java.lang.String key, java.lang.String value, int listLength)
          Adds the given value to the list of values set for key key.
static void PreferenceUtilities.removeFromFifoList(Preferences prefs, java.lang.String key, java.lang.String value)
          Removes value value from the list associated with the given key.
static void PreferenceUtilities.resizeList(Preferences prefs, java.lang.String key, int newSize)
          Resizes the list associated to key key to the given size by dropping out all items coming after index newSize.
 

Uses of Preferences in com.tensegrity.gui.document.persistence
 

Methods in com.tensegrity.gui.document.persistence that return Preferences
protected abstract  Preferences DocumentInformationCheck.getPreferences()
          Returns the Preferences
 

Uses of Preferences in com.tensegrity.gui.graphdocument
 

Methods in com.tensegrity.gui.graphdocument with parameters of type Preferences
static int ElementDefinitionUtil.getOption(Preferences prefs, java.lang.String key)
          Returns one of the apply action constants that correspond to the value of the setting in the preferences with the given key.
static void ElementDefinitionUtil.setOption(Preferences prefs, java.lang.String key, int option)
          Sets the value of a setting in the preferences corresponding to the given apply action constant.
static int ElementDefinitionUtil.getLayoutContextOptionDefault(Preferences prefs)
          Returns the default option for resolving layout conflicts.
static int ElementDefinitionUtil.getImagesOptionDefault(Preferences prefs)
          Returns the default option for resolving image conflicts.
static int ElementDefinitionUtil.getStylesOptionDefault(Preferences prefs)
          Returns the default option for resolving style conflicts.
static int ElementDefinitionUtil.getStyleNamesOptionDefault(Preferences prefs)
          Returns the default option for resolving style name conflicts.
static int ElementDefinitionUtil.getGeometriesOptionDefault(Preferences prefs)
          Returns the default option for resolving geometry conflicts.
static int ElementDefinitionUtil.getRulesOptionDefault(Preferences prefs)
          Returns the default option for resolving rule conflicts.
static void ElementDefinitionUtil.setLayoutContextOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving layout conflicts.
static void ElementDefinitionUtil.setImagesOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving image conflicts.
static void ElementDefinitionUtil.setStylesOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving style conflicts.
static void ElementDefinitionUtil.setStyleNamesOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving style name conflicts.
static void ElementDefinitionUtil.setGeometriesOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving geometry conflicts.
static void ElementDefinitionUtil.setRulesOptionDefault(Preferences prefs, int option)
          Sets the default option for resolving rules conflicts.
static boolean ElementDefinitionUtil.isTrueByDefault(Preferences prefs, java.lang.String key)
          Returns true, if the setting in the preferences with the given key is a Boolean with the value TRUE.
 

Uses of Preferences in com.tensegrity.gui.graphdocument.persistence
 

Fields in com.tensegrity.gui.graphdocument.persistence declared as Preferences
protected  Preferences GraphDocumentReader.preferences
           
 

Constructors in com.tensegrity.gui.graphdocument.persistence with parameters of type Preferences
GraphDocumentReader(Frame rootFrame, UIManager uiManager, MDIComponent mdiComponent, RepositoryContainer repositoryContainer, Preferences preferences, RuleRegistry defaultRegistry, LayoutController defaultLayoutController, GraphDocumentReaderConflictHandler conflictHandler)
          Constructor.
 

Uses of Preferences in com.tensegrity.gui.swing.document
 

Constructors in com.tensegrity.gui.swing.document with parameters of type Preferences
SwingGraphDocumentReader(Frame rootFrame, UIManager uiManager, MDIComponent mdiComponent, RepositoryContainer repositoryContainer, Preferences preferences, RuleRegistry defaultRegistry, LayoutController defaultLayoutController)
          Constructor
SwingGraphDocumentReader(Frame rootFrame, UIManager uiManager, MDIComponent mdiComponent, RepositoryContainer repositoryContainer, Preferences preferences, RuleRegistry defaultRegistry, LayoutController defaultLayoutController, GraphDocumentReaderConflictHandler conflictHandler)
          Constructor
 

Uses of Preferences in com.tensegrity.gui.swing.document.persistence
 

Methods in com.tensegrity.gui.swing.document.persistence that return Preferences
protected  Preferences SwingDocumentInformationCheck.getPreferences()
           
 

Constructors in com.tensegrity.gui.swing.document.persistence with parameters of type Preferences
SwingDocumentInformationCheck(Preferences prefs, UIManager uiManager, RuleRegistry rr, LayoutController lc, java.awt.Frame dlgParent)
          Constructor
 

Uses of Preferences in com.tensegrity.gui.swt.document.persitence
 

Methods in com.tensegrity.gui.swt.document.persitence that return Preferences
protected  Preferences SwtDocumentInformationCheck.getPreferences()
           
 

Constructors in com.tensegrity.gui.swt.document.persitence with parameters of type Preferences
SwtDocumentInformationCheck(Preferences prefs, UIManager uiManager, RuleRegistry rr, LayoutController lc, Frame dlgParent)
           TODO SGu (30.06.2005): Comment constructor
 

Uses of Preferences in com.tensegrity.skeleton.container.swing
 

Methods in com.tensegrity.skeleton.container.swing with parameters of type Preferences
static void SwingRepositoryUtil.storeCollapsedContainersToPreferences(SwingApplicationFrame appFrame, Preferences prefs, java.lang.String key)
          Stores a string to the preferences containing the paths to all collapsed repository slides, so their state can be restored later.
static void SwingRepositoryUtil.restoreCollapsedContainersFromPreferences(SwingApplicationFrame appFrame, Preferences prefs, java.lang.String key)
          Restores the state of collapsed repository slides from a string in the preferences containing their paths.
static void SwingRepositoryUtil.storeHiddenContainersToPreferences(SwingApplicationFrame appFrame, Preferences prefs, java.lang.String key)
          Stores a string to the preferences containing the paths to all hidden repository slides, so their state can be restored later.
static void SwingRepositoryUtil.restoreHiddenContainersFromPreferences(SwingApplicationFrame appFrame, Preferences prefs, java.lang.String key)
          Restores the state of hidden repository slides from a string in the preferences containing their paths.
 

Uses of Preferences in com.tensegrity.skeleton.launch
 

Methods in com.tensegrity.skeleton.launch with parameters of type Preferences
protected abstract  void AbstractLoadPreferencesLaunchTask.managingPreferences(Preferences prefs)
          This should connect the applictaion frame and a suitable PreferenceHelper
protected abstract  void AbstractLoadPreferencesLaunchTask.initPreferenceListeners(Preferences prefs)
          This initializes all preferences listeners
 



Copyright © 2005 Tensegrity Software GmbH. All Rights Reserved. Date of creation: 09.06.2006.