Interface RJBrowser.BrowserModel<T>

Enclosing class:
RJBrowser

public static interface RJBrowser.BrowserModel<T>
AbstractBrowserModel - A public interface for controlling a browser.
  • Method Summary

    Modifier and Type
    Method
    Description
    getChild(T anObj, int anIndex)
    Returns browser object children.
    int
    Returns the number of children for the given parent.
    Returns the browser root object.
    boolean
    isLeaf(T anObj)
    Returns whether browser object has children.
  • Method Details

    • getRoot

      Object getRoot()
      Returns the browser root object.
    • isLeaf

      boolean isLeaf(T anObj)
      Returns whether browser object has children.
    • getChildCount

      int getChildCount(T anObj)
      Returns the number of children for the given parent.
    • getChild

      Object getChild(T anObj, int anIndex)
      Returns browser object children.