Package com.inductiveautomation.rm.swing
Interface RJBrowser.BrowserModel<T>
- 
- Enclosing class:
- RJBrowser
 
 public static interface RJBrowser.BrowserModel<T>AbstractBrowserModel - A public interface for controlling a browser.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetChild(T anObj, int anIndex)Returns browser object children.intgetChildCount(T anObj)Returns the number of children for the given parent.java.lang.ObjectgetRoot()Returns the browser root object.booleanisLeaf(T anObj)Returns whether browser object has children.
 
- 
- 
- 
Method Detail- 
getRootjava.lang.Object getRoot() Returns the browser root object.
 - 
isLeafboolean isLeaf(T anObj) Returns whether browser object has children.
 - 
getChildCountint getChildCount(T anObj) Returns the number of children for the given parent.
 - 
getChildjava.lang.Object getChild(T anObj, int anIndex) Returns browser object children.
 
- 
 
-