| java.lang.Object edu.rice.cs.util.docnavigation.AWTContainerNavigatorFactory
AWTContainerNavigatorFactory | public AWTContainerNavigatorFactory()(Code) | | |
makeListNavigator | public IDocumentNavigator<ItemT> makeListNavigator()(Code) | | Creates a new List Navigator
a list navigator |
makeListNavigator | public IDocumentNavigator<ItemT> makeListNavigator(IDocumentNavigator<ItemT> parent)(Code) | | Creates a list navigator and migrates the navigator items from parent to the new navigator. The migration
is asynchronous but it completes before any subsequent computation in the event thread.
Parameters: parent - the navigator to migrate from the new list navigator |
makeTreeNavigator | public IDocumentNavigator<ItemT> makeTreeNavigator(String path)(Code) | | Returns a new tree Navigator with the specified root
Parameters: path - the path name of the root node a tree navigator |
makeTreeNavigator | public IDocumentNavigator<ItemT> makeTreeNavigator(String name, IDocumentNavigator<ItemT> parent, List<Pair<String, INavigatorItemFilter<ItemT>>> l)(Code) | | Creates a tree navigator and migrates the navigator items from the parent to the new navigator. The migration
is asynchronous but it completes before any subsequent computation in the event thread.
Parameters: name - the name of the root node Parameters: parent - the navigator to migrate from the new tree navigator |
|
|