Uses of Class
net.infonode.docking.properties.DockingWindowProperties

Packages that use DockingWindowProperties
net.infonode.docking Core classes for the docking windows framework. 
net.infonode.docking.model   
net.infonode.docking.properties Property classes for docking windows. 
 

Uses of DockingWindowProperties in net.infonode.docking
 

Methods in net.infonode.docking that return DockingWindowProperties
 DockingWindowProperties FloatingWindow.getWindowProperties()
           Returns the properties for this window.
 DockingWindowProperties DockingWindow.getWindowProperties()
          Returns the properties for this window.
 

Uses of DockingWindowProperties in net.infonode.docking.model
 

Fields in net.infonode.docking.model declared as DockingWindowProperties
private  DockingWindowProperties WindowItem.dockingWindowProperties
           
static DockingWindowProperties WindowItem.emptyProperties
           
private  DockingWindowProperties WindowItem.parentProperties
           
 

Methods in net.infonode.docking.model that return DockingWindowProperties
 DockingWindowProperties WindowItem.getDockingWindowProperties()
           
 DockingWindowProperties WindowItem.getParentDockingWindowProperties()
           
 

Methods in net.infonode.docking.model with parameters of type DockingWindowProperties
 void WindowItem.setParentDockingWindowProperties(DockingWindowProperties parentProperties)
           
 

Uses of DockingWindowProperties in net.infonode.docking.properties
 

Methods in net.infonode.docking.properties that return DockingWindowProperties
 DockingWindowProperties DockingWindowProperties.addSuperObject(DockingWindowProperties properties)
          Adds a super object from which property values are inherited.
 DockingWindowProperties RootWindowProperties.getDockingWindowProperties()
          Returns the default property values for docking windows.
 DockingWindowProperties DockingWindowProperties.removeSuperObject()
          Deprecated. Use removeSuperObject(DockingWindowProperties) instead.
 DockingWindowProperties DockingWindowProperties.removeSuperObject(DockingWindowProperties superObject)
          Removes a super object.
 DockingWindowProperties DockingWindowProperties.setCloseEnabled(boolean enabled)
          Enables/disables window close by the user.
 DockingWindowProperties DockingWindowProperties.setDockEnabled(boolean enabled)
          Enables/disables dock to the root window from a floating window.
 DockingWindowProperties DockingWindowProperties.setDragEnabled(boolean enabled)
          Enables/disables window drag by the user.
 DockingWindowProperties DockingWindowProperties.setMaximizeEnabled(boolean enabled)
          Enables/disables window maximize by the user.
 DockingWindowProperties DockingWindowProperties.setMinimizeEnabled(boolean enabled)
          Enables/disables window minimize by the user.
 DockingWindowProperties DockingWindowProperties.setRestoreEnabled(boolean enabled)
          Enables/disables window restore by the user.
 DockingWindowProperties DockingWindowProperties.setTitleProvider(DockingWindowTitleProvider titleProvider)
          Sets the title provider for the window.
 DockingWindowProperties DockingWindowProperties.setUndockEnabled(boolean enabled)
          Enables/disables undock to floating window.
 DockingWindowProperties DockingWindowProperties.setUndockOnDropEnabled(boolean enabled)
           Enables/disables if the window drag by the user and is dropped outside the root window should undock to a floating window or not.
 

Methods in net.infonode.docking.properties with parameters of type DockingWindowProperties
 DockingWindowProperties DockingWindowProperties.addSuperObject(DockingWindowProperties properties)
          Adds a super object from which property values are inherited.
 DockingWindowProperties DockingWindowProperties.removeSuperObject(DockingWindowProperties superObject)
          Removes a super object.
 

Constructors in net.infonode.docking.properties with parameters of type DockingWindowProperties
DockingWindowProperties(DockingWindowProperties inheritFrom)
          Creates a property object that inherit values from another property object.