public class LayerTreeModel extends BasicTreeModel
LayerLayerTreeModel initializes itself with a default root node. By default, this root node is of type
 BasicTreeNode and its text is "Layers". Nodes added under the tree model's root should always be of type
 LayerTreeNodeLayerTreeNode may be of any type.
 
 LayerTreeModel provides operations for performing the following common tasks on a layer tree: LayerListLayerList from appearing in the tree. For example, the layer that renders the tree itself
 usually should not appear in the tree. If it did then the user could turn off the tree layer and have no way of
 getting it back. A layer can be marked as hidden by setting AVKey.HIDDEN to true:
 
 hiddenLayer.setValue(AVKey.HIDDEN, true); // Prevent layer from being displayed in the layer tree
| Modifier and Type | Field and Description | 
|---|---|
| protected static String | DEFAULT_ROOT_NAMEThe default root name: "Layers". | 
| protected boolean | includeHiddenLayersIndicates whether or not the tree model must include hidden layers. | 
root| Constructor and Description | 
|---|
| LayerTreeModel()Creates a new  LayerTreeModelwith the default root node. | 
| LayerTreeModel(LayerList layerList)Creates a new  LayerTreeModelwith the default root node and adds a newLayerTreeNodefor each non-hiddenLayerin the specifiedlayerList. | 
| LayerTreeModel(LayerList layerList,
              boolean includeHiddenLayers)Creates a new  LayerTreeModelwith the default root node and adds a newLayerTreeNodefor eachLayerin the specifiedlayerList. | 
| Modifier and Type | Method and Description | 
|---|---|
| LayerTreeNode | addLayer(Layer layer)Adds the a new  LayerTreeNodecreated with the specifiedlayerto this tree model's root
 node. | 
| void | addLayer(LayerTreeNode layerNode)Adds the specified  layerNodeto this tree model's root node. | 
| protected LayerTreeNode | createLayerNode(Layer layer)Returns a new root  LayerTreeNodefor the specifiedlayer. | 
| protected TreeNode | createRootNode()Returns a new root  TreeNodefor this tree model. | 
| protected void | initialize()Initializes this tree model with the default root node. | 
| boolean | isIncludeHiddenLayers()Indicates whether or not this tree model includes layers marked as hidden. | 
| protected boolean | mustIncludeLayer(Layer layer)Determines if a layer must be included in the layer tree. | 
| void | refresh(LayerList layerList)Refreshes this tree model's layer nodes with the specified  layerList. | 
| void | removeAllLayers()Clears this tree model by removing all children of the root node. | 
| void | setIncludeHiddenLayers(boolean includeHiddenLayers)Specifies whether or not this tree model includes layers marked as hidden. | 
getRoot, setRootonMessage, propertyChangeaddPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getBooleanValue, getBooleanValue, getChangeSupport, getDoubleValue, getDoubleValue, getEntries, getIntegerValue, getIntegerValue, getLongValue, getLongValue, getRestorableStateForAVPair, getStringValue, getStringValue, getStringValue, getValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValue, setValuesclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitaddPropertyChangeListener, addPropertyChangeListener, clearList, copy, firePropertyChange, firePropertyChange, getEntries, getStringValue, getValue, getValues, hasKey, removeKey, removePropertyChangeListener, removePropertyChangeListener, setValue, setValuespropertyChangeonMessageprotected static final String DEFAULT_ROOT_NAME
protected boolean includeHiddenLayers
public LayerTreeModel()
LayerTreeModel with the default root node. Otherwise the new model is empty.public LayerTreeModel(LayerList layerList)
LayerTreeModel with the default root node and adds a new LayerTreeNode
 for each non-hidden Layer in the specified layerList. The tree will not include layers
 marked as hidden.layerList - the list of Layer objects to the new model represents.IllegalArgumentException - if the layerList is null.public LayerTreeModel(LayerList layerList, boolean includeHiddenLayers)
LayerTreeModel with the default root node and adds a new LayerTreeNode
 for each Layer in the specified layerList.layerList - the list of Layer objects to the new model represents.includeHiddenLayers - if this parameter is true, layers marked as hidden will be included in
                            the tree. Otherwise hidden layers will not be included in the tree.IllegalArgumentException - if the layerList is null.public LayerTreeNode addLayer(Layer layer)
LayerTreeNode created with the specified layer to this tree model's root
 node. Nodes added under this tree model's root should always be of type LayerTreeNodelayer - the layer to add.LayerTreeNode created for the specified layer.IllegalArgumentException - if the layer is null.public void addLayer(LayerTreeNode layerNode)
layerNode to this tree model's root node. Nodes added under this tree model's
 root should always be of type LayerTreeNodelayerNode - the layer node to add.IllegalArgumentException - if the layerNode is null.protected LayerTreeNode createLayerNode(Layer layer)
LayerTreeNode for the specified layer. Called from
 addLayer(Layer).layer - the Layer to create a new LayerTreeNode for.LayerTreeNode.protected TreeNode createRootNode()
TreeNode for this tree model. Called from initialize.TreeNode.protected void initialize()
public boolean isIncludeHiddenLayers()
true if hidden layers are included in the tree mode. false if hidden layers are
         not included.protected boolean mustIncludeLayer(Layer layer)
layer - Layer to test.true if the layer must be included in the tree, false if the layer must not be
         included.public void refresh(LayerList layerList)
layerList. Clears this tree model by
 removing all children of the root node, then adds a new LayerTreeNode for each Layer in
 the specified layerList. Layers marked as hidden will not be included in the tree model, unless the
 includeHiddenLayers property is set to true.layerList - the list of Layer objects to the new model represents.IllegalArgumentException - if the layerList is null.setIncludeHiddenLayers(boolean)public void removeAllLayers()
public void setIncludeHiddenLayers(boolean includeHiddenLayers)
refresh. A layer can be marked as hidden by setting
 the value for key AVKey.HIDDEN to true.includeHiddenLayers - true if the tree model should include hidden layers. false
                            if the model should ignore layers marked as hidden.