Uses of Class
net.infonode.docking.View

Packages that use View
net.infonode.docking Core classes for the docking windows framework. 
net.infonode.docking.internal   
net.infonode.docking.internalutil   
net.infonode.docking.model   
net.infonode.docking.theme.internal.laftheme   
net.infonode.docking.util Utility classes for docking windows. 
 

Uses of View in net.infonode.docking
 

Fields in net.infonode.docking declared as View
private  View RootWindow.focusedView
           
 

Methods in net.infonode.docking that return View
 View RootWindow.getFocusedView()
          Returns the view that currently contains the focus.
private static View FocusManager.getViewContaining(java.awt.Component component)
           
(package private) static View View.read(java.io.ObjectInputStream in, ReadContext context)
           
 View ViewSerializer.readView(java.io.ObjectInputStream in)
          Reads and returns a view.
 

Methods in net.infonode.docking with parameters of type View
(package private)  void RootWindow.addView(View view)
           
private  void TabWindowHoverAction.addViewTitleBarProperties(View view)
           
(package private)  void DockingWindow.childGainedFocus(DockingWindow child, View view)
           
protected  void DockingWindow.clearChildrenFocus(DockingWindow child, View view)
           
protected  void AbstractTabWindow.clearChildrenFocus(DockingWindow child, View view)
           
protected  void WindowBar.clearFocus(View view)
           
protected  void DockingWindow.clearFocus(View view)
           
protected  void AbstractTabWindow.clearFocus(View view)
           
protected  void DockingWindow.fireViewFocusChanged(View previouslyFocusedView, View focusedView)
           
 void RootWindow.removeView(View view)
          Removes all internal references to a view.
private  void TabWindowHoverAction.removeViewTitleBarProperties(View view)
           
(package private)  void RootWindow.setFocusedView(View view)
           
 void DockingWindowListener.viewFocusChanged(View previouslyFocusedView, View focusedView)
          Called when the focus moves from one view to another view.
 void DockingWindowAdapter.viewFocusChanged(View previouslyFocusedView, View focusedView)
           
 void ViewSerializer.writeView(View view, java.io.ObjectOutputStream out)
          Writes a view to a stream.
 

Uses of View in net.infonode.docking.internal
 

Fields in net.infonode.docking.internal declared as View
private  View ViewTitleBar.view
           
 

Constructors in net.infonode.docking.internal with parameters of type View
ViewTitleBar(View view)
           
 

Uses of View in net.infonode.docking.internalutil
 

Methods in net.infonode.docking.internalutil with parameters of type View
static RootWindow InternalDockingUtil.createInnerRootWindow(View[] views)
           
 

Uses of View in net.infonode.docking.model
 

Methods in net.infonode.docking.model that return View
 View ViewReader.readView(java.io.ObjectInputStream in, ReadContext context)
           
 

Methods in net.infonode.docking.model with parameters of type View
 void ViewWriter.writeView(View view, java.io.ObjectOutputStream out, WriteContext context)
           
 

Uses of View in net.infonode.docking.theme.internal.laftheme
 

Methods in net.infonode.docking.theme.internal.laftheme that return View
private  View TitleBarUI.findView(java.awt.Component c)
           
 

Uses of View in net.infonode.docking.util
 

Methods in net.infonode.docking.util that return View
 View ViewFactory.createView()
          Creates a view.
 View ViewMap.getView(int id)
          Returns the view with a specific id.
protected  View AbstractViewMap.getView(java.lang.Object id)
           
 View StringViewMap.getView(java.lang.String id)
          Returns the view with a specific id.
 View AbstractViewMap.getViewAtIndex(int index)
          Returns the view at a specific index.
 View MixedViewHandler.readView(java.io.ObjectInputStream in)
           
 View AbstractViewMap.readView(java.io.ObjectInputStream in)
           
 

Methods in net.infonode.docking.util with parameters of type View
 void ViewMap.addView(int id, View view)
          Adds a view to the map.
protected  void AbstractViewMap.addView(java.lang.Object id, View view)
           
 void StringViewMap.addView(java.lang.String id, View view)
          Adds a view to the map.
 void StringViewMap.addView(View view)
          Adds a view to the map.
 boolean AbstractViewMap.contains(View view)
          Returns true if this view map contains the view.
private static java.lang.String DeveloperUtil.getViewLayout(View view, int depth)
           
 void MixedViewHandler.writeView(View view, java.io.ObjectOutputStream out)
           
 void AbstractViewMap.writeView(View view, java.io.ObjectOutputStream out)
           
 

Constructors in net.infonode.docking.util with parameters of type View
StringViewMap(View[] views)
          Utility constructor that creates a map with a number of views.
ViewMap(View[] views)
          Utility constructor that creates a map with a number of views.