Package com.ribs.plus
Interface BrowserModel
- 
 public interface BrowserModelAbstractBrowserModel - A public interface for controlling a browser.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.ObjectgetChild(java.lang.Object anObj, int anIndex)Returns browser object children.intgetChildCount(java.lang.Object anObj)Returns the number of children for the given parent.java.lang.ObjectgetRoot()Returns the browser root object.booleanisLeaf(java.lang.Object anObj)Returns whether browser object has children.
 
- 
- 
- 
Method Detail- 
getRootjava.lang.Object getRoot() Returns the browser root object.
 - 
isLeafboolean isLeaf(java.lang.Object anObj) Returns whether browser object has children.
 - 
getChildCountint getChildCount(java.lang.Object anObj) Returns the number of children for the given parent.
 - 
getChildjava.lang.Object getChild(java.lang.Object anObj, int anIndex)Returns browser object children.
 
- 
 
-