Uses of Class
com.vividsolutions.jump.workbench.model.Category

Packages that use Category
com.vividsolutions.jump.workbench.model Layers, Categories, and Layer Managers -- the top level of abstraction in the JUMP data model, wrapping Features and FeatureCollections, which in turn wrap Geometries. 
org.openjump.core.apitools   
org.openjump.core.ui.plugin.layer   
org.openjump.core.ui.plugin.mousemenu.category   
org.openjump.core.ui.util   
 

Uses of Category in com.vividsolutions.jump.workbench.model
 

Methods in com.vividsolutions.jump.workbench.model that return Category
 Category CategoryEvent.getCategory()
           
 Category LayerEvent.getCategory()
           
 Category LayerManager.getCategory(Layerable layerable)
           
 Category LayerManager.getCategory(java.lang.String name)
           
 

Methods in com.vividsolutions.jump.workbench.model that return types with arguments of type Category
 java.util.Collection<Category> Task.getCategories()
           
 

Methods in com.vividsolutions.jump.workbench.model with parameters of type Category
 void Task.addCategory(Category category)
          Called by Java2XML
 void LayerManager.fireCategoryChanged(Category category, CategoryEventType type)
           
 int LayerManager.indexOf(Category category)
           
 void LayerManager.removeIfEmpty(Category category)
           
 

Constructors in com.vividsolutions.jump.workbench.model with parameters of type Category
CategoryEvent(Category category, CategoryEventType type, int categoryIndex)
           
LayerEvent(Layerable layerable, LayerEventType type, Category category, int layerIndex)
           
 

Uses of Category in org.openjump.core.apitools
 

Methods in org.openjump.core.apitools that return Category
 Category LayerTools.getResultCategory()
           
static Category LayerTools.getResultCategory(PlugInContext context)
           
 

Uses of Category in org.openjump.core.ui.plugin.layer
 

Methods in org.openjump.core.ui.plugin.layer with parameters of type Category
protected  java.util.ArrayList<Layerable> SortCategoryAbstractPlugIn.getCategoryArrayList(Category category)
           
 

Uses of Category in org.openjump.core.ui.plugin.mousemenu.category
 

Methods in org.openjump.core.ui.plugin.mousemenu.category that return Category
protected  Category CategoryMover.getCategory(java.lang.String name)
          Gets category with spcified name, if exists.
 

Methods in org.openjump.core.ui.plugin.mousemenu.category with parameters of type Category
 boolean SetCategoryVisibilityPlugIn.IsCategoryVisible(Category cat)
           
 void CategoryMover.moveCategoryOneDown(Category cat)
          Moves the given category to the next lower position in the LayerNamePanel
 void CategoryMover.moveCategoryOneUp(Category cat)
          Moves the given category to the next higher position in the LayerNamePanel
 void CategoryMover.moveCategoryToBottom(Category cat)
          Moves the given category to the bottom position in the LayerNamePanel
 void CategoryMover.moveCategoryToPosition(Category cat, int pos)
          Moves the given category to the given position in the LayerNamePanel
 void CategoryMover.moveCategoryToTop(Category cat)
          Moves the given category to the top position in the LayerNamePanel
 void SetCategoryVisibilityPlugIn.setCategoryVisibility(Category cat, boolean visible)
           
 

Uses of Category in org.openjump.core.ui.util
 

Methods in org.openjump.core.ui.util that return Category
static Category TaskUtil.getSelectedCategoryName(WorkbenchContext workbenchContext)