Uses of Class
bibliothek.extension.gui.dock.util.Path

Packages that use Path
bibliothek.extension.gui.dock   
bibliothek.extension.gui.dock.preference Generic collection of preferences used in this framework. 
bibliothek.extension.gui.dock.preference.preferences   
bibliothek.extension.gui.dock.util   
 

Uses of Path in bibliothek.extension.gui.dock
 

Methods in bibliothek.extension.gui.dock with parameters of type Path
protected
<V> PreferenceEditor<V>
PreferenceTable.createEditor(Path type)
          Creates a new editor for type.
<V> PreferenceEditorFactory<V>
PreferenceTable.getEditorFactory(Path type)
          Gets the factory which is responsible to create editors for type-objects.
 void PreferenceTable.setEditorFactory(Path type, PreferenceEditorFactory<?> factory)
          Sets the kind of factory that should be used to edit some type of object.
 

Uses of Path in bibliothek.extension.gui.dock.preference
 

Methods in bibliothek.extension.gui.dock.preference that return Path
 Path DefaultPreference.getPath()
           
 Path Preference.getPath()
          Gets the unique path of this resource.
 Path PreferenceTreeModel.Node.getPath()
          Gets the path of this node.
 Path DefaultPreferenceModel.getPath(int index)
           
 Path MergedPreferenceModel.getPath(int index)
           
 Path PreferenceModel.getPath(int index)
          Gets the unique location of the index'th preference of this model.
 Path PreferenceTreeModel.getPath(int index)
           
 Path DefaultPreference.getTypePath()
           
 Path Preference.getTypePath()
          Gets the type of the value that this preferences uses.
 Path DefaultPreferenceModel.getTypePath(int index)
           
 Path MergedPreferenceModel.getTypePath(int index)
           
 Path PreferenceModel.getTypePath(int index)
          Tells what kind of type the index'th value is.
 Path PreferenceTreeModel.getTypePath(int index)
           
 

Methods in bibliothek.extension.gui.dock.preference with parameters of type Path
 void MergedPreferenceModel.add(PreferenceModel model, Path path)
          Adds model at the end of this model.
 void PreferenceStorage.addFactory(Path type, PreferenceFactory<?> factory)
          Adds a new factory to this storage, the factory will be responsible to write or read some kind of preferences.
 void PreferenceTreeModel.delete(Path path)
          Deletes the node at path and all its children from the tree.
 int MergedPreferenceModel.indexOf(Path path)
          Gets the index of path.
 void MergedPreferenceModel.insert(int index, PreferenceModel model, Path path)
          Inserts a new submodel into this model.
 void PreferenceTreeModel.put(Path path, String name, PreferenceModel model)
          Sets name and model of a given node.
 void PreferenceTreeModel.putModel(Path path, PreferenceModel model)
          Sets the model of the node at path.
 void PreferenceTreeModel.putNode(Path path, String name)
          Sets the name of the node at path.
 void MergedPreferenceModel.remove(Path path)
          Removes the model with the path path.
 

Constructors in bibliothek.extension.gui.dock.preference with parameters of type Path
DefaultPreference(Path type, Path path)
          Creates a new preference.
DefaultPreference(String label, Path type, Path path)
          Creates a new preference.
 

Uses of Path in bibliothek.extension.gui.dock.preference.preferences
 

Constructors in bibliothek.extension.gui.dock.preference.preferences with parameters of type Path
ButtonContentPreference(DockProperties properties, Path path)
          Creates a new preference.
ChoiceDockPropertyPreference(DockProperties properties, PropertyKey<V> key, Path path, DefaultChoice<V> choice)
          Creates a new preference.
DockPropertyPreference(DockProperties properties, PropertyKey<V> key, Path type, Path path)
          Creates a new preference.
DockPropertyPreference(DockProperties properties, PropertyKey<V> key, String label, Path type, Path path)
          Creates a new preference.
DockPropertyPreference(ResourceBundle bundle, String prefix, DockProperties properties, PropertyKey<V> key, V defaultValue, Path type, Path path)
          Creates a new preference.
 

Uses of Path in bibliothek.extension.gui.dock.util
 

Fields in bibliothek.extension.gui.dock.util declared as Path
static Path Path.TYPE_INT_PATH
          standard path for Integer
static Path Path.TYPE_KEYSTROKE_PATH
          standard path for KeyStroke, can use KeyStrokeValidator as information
static Path Path.TYPE_MODIFIER_MASK_PATH
          standard path for ModifierMask
static Path Path.TYPE_STRING_CHOICE_PATH
          standard path for a choice using a String as value and a Choice as information
static Path Path.TYPE_STRING_PATH
          standard path for String
 

Methods in bibliothek.extension.gui.dock.util that return Path
 Path Path.append(Path path)
          Creates a new path which is a combination of this and path.
 Path Path.append(String segments)
          Creates a new path appending segments to this path.
 Path Path.getParent()
          Returns the parent of this path.
 Path Path.subPath(int offset, int length)
          Creates a new path that is a subset of this path.
 Path Path.uniqueAppend(Path path)
          Creates a new path which is not only a combination of this and path, but is also unique in the way that x+y.z would not yield the same as x.y+z.
 

Methods in bibliothek.extension.gui.dock.util with parameters of type Path
 Path Path.append(Path path)
          Creates a new path which is a combination of this and path.
 Path Path.uniqueAppend(Path path)
          Creates a new path which is not only a combination of this and path, but is also unique in the way that x+y.z would not yield the same as x.y+z.