Class LayerManager
- java.lang.Object
-
- com.vividsolutions.jump.workbench.model.LayerManager
-
-
Constructor Summary
Constructors Constructor Description LayerManager()
LayerManager(Task task)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addCategory(String categoryName)
void
addCategory(String categoryName, int index)
Layer
addLayer(String categoryName, Layer layer)
Layer
addLayer(String categoryName, String layerName, FeatureCollection featureCollection)
void
addLayerable(String categoryName, Layerable layerable)
void
addLayerListener(LayerListener layerListener)
Layer
addOrReplaceLayer(String categoryName, String layerName, FeatureCollection featureCollection)
void
deferFiringEvents(Runnable r)
void
dispose()
void
dispose(Layerable l)
void
dispose(Layerable[] ls)
void
fireFeaturesAttChanged(Collection<Feature> features, FeatureEventType type, Layer layer, Collection<Feature> oldFeatureClones)
void
fireFeaturesChanged(Collection<Feature> features, FeatureEventType type, Layer layer)
void
fireGeometryModified(Collection<Feature> features, Layer layer, Collection<Feature> oldFeatureClones)
void
fireLayerChanged(Layerable layerable, LayerEventType type)
Color
generateLayerFillColor()
Blackboard
getBlackboard()
List<Category>
getCategories()
Category
getCategory(Layerable layerable)
Category
getCategory(String name)
CoordinateSystem
getCoordinateSystem()
Collection<Layer>
getEditableLayers()
Editability is not enforced; all parties are responsible for heeding the editability of a layer.org.locationtech.jts.geom.Envelope
getEnvelopeOfAllLayers()
org.locationtech.jts.geom.Envelope
getEnvelopeOfAllLayers(boolean visibleLayersOnly)
Layer
getLayer(int index)
Layer
getLayer(String name)
<T extends Layerable>
List<T>getLayerables(Class<T> layerableClass)
To get all Layerables, set layerableClass to Layerable.class.List<Layer>
getLayers()
Collection<Layer>
getLayersWithModifiedFeatureCollections()
LinkedList<Layer>
getLayersWithNullDataSource()
List<RasterImageLayer>
getRasterImageLayers()
[Giuseppe Aruta] July 8 2015 Gets the list of RasterImageLayer.class registered in this managerTask
getTask()
LinkedList<String>
getTemporaryRasterImageLayers()
UndoableEditReceiver
getUndoableEditReceiver()
List<Layer>
getVisibleLayers(boolean includeFence)
List<WMSLayer>
getWMSLayers()
[Giuseppe Aruta] July 8 2015 Gets the list of WMSLayer.class registered in this managerint
indexOf(Category category)
int
indexOf(Layer layer)
boolean
isFiringEvents()
<T> Iterator<T>
iterator(Class<T> clazz)
static int
layerManagerCount()
void
remove(Layerable layerable)
Convenience method.void
remove(Layerable[] layerables)
remove, but do not dispose layer (as used e.g.void
removeIfEmpty(Category category)
void
removeLayerListener(LayerListener layerListener)
<T extends Layerable>
Iterator<T>reverseIterator(Class<T> layerableClass)
void
setCoordinateSystem(CoordinateSystem coordinateSystem)
void
setFiringEvents(boolean firingEvents)
int
size()
String
uniqueLayerName(String name)
-
-
-
Constructor Detail
-
LayerManager
public LayerManager()
-
LayerManager
public LayerManager(Task task)
-
-
Method Detail
-
getUndoableEditReceiver
public UndoableEditReceiver getUndoableEditReceiver()
-
deferFiringEvents
public void deferFiringEvents(Runnable r)
-
generateLayerFillColor
public Color generateLayerFillColor()
-
addCategory
public void addCategory(String categoryName)
-
addCategory
public void addCategory(String categoryName, int index)
-
addLayer
public Layer addLayer(String categoryName, String layerName, FeatureCollection featureCollection)
- Parameters:
layerName
- the name of the layer. A number will be appended if a layer with the same name already exists. Set to null to automatically generate a new name.
-
addOrReplaceLayer
public Layer addOrReplaceLayer(String categoryName, String layerName, FeatureCollection featureCollection)
- Parameters:
categoryName
- name of the category where the Layer will be addedlayerName
- the Layer namefeatureCollection
- the new FeatureCollection which will be added or which will replace the one in the previous Layer named layerName if any- Returns:
- the Layer with its new FeatureCollection
-
uniqueLayerName
public String uniqueLayerName(String name)
- Returns:
- a unique layer name based on the given name
-
remove
public void remove(Layerable layerable)
Convenience method. Use dispose rather than remove if you want to free the memory. remove is only used to temporarily remove a layer from the layer (ex. in the MoveLayerPlugIn).- Parameters:
layerable
- Layerable to remove
-
remove
public void remove(Layerable[] layerables)
remove, but do not dispose layer (as used e.g. by MoveLayerPlugin)
-
removeIfEmpty
public void removeIfEmpty(Category category)
-
dispose
public void dispose()
-
dispose
public void dispose(Layerable l)
-
dispose
public void dispose(Layerable[] ls)
-
indexOf
public int indexOf(Category category)
-
fireFeaturesChanged
public void fireFeaturesChanged(Collection<Feature> features, FeatureEventType type, Layer layer)
-
fireGeometryModified
public void fireGeometryModified(Collection<Feature> features, Layer layer, Collection<Feature> oldFeatureClones)
-
fireLayerChanged
public void fireLayerChanged(Layerable layerable, LayerEventType type)
-
setFiringEvents
public void setFiringEvents(boolean firingEvents)
-
isFiringEvents
public boolean isFiringEvents()
-
reverseIterator
public <T extends Layerable> Iterator<T> reverseIterator(Class<T> layerableClass)
- Returns:
- an iterator over the layers, from bottom to top. Layers with #drawingLast = true appear last.
-
iterator
public <T> Iterator<T> iterator(Class<T> clazz)
- Returns:
- an iterator of layerables. Same as getLayerables but avoid building collections WARNING : old iterator() returning an iterator of Layers only has been removed and all classes using it in OpenJUMP core have been updated
-
addLayerListener
public void addLayerListener(LayerListener layerListener)
-
removeLayerListener
public void removeLayerListener(LayerListener layerListener)
-
getLayer
public Layer getLayer(int index)
-
size
public int size()
-
getEnvelopeOfAllLayers
public org.locationtech.jts.geom.Envelope getEnvelopeOfAllLayers()
-
getEnvelopeOfAllLayers
public org.locationtech.jts.geom.Envelope getEnvelopeOfAllLayers(boolean visibleLayersOnly)
- Returns:
- the envelope containing all layers
- Since:
- [Giuseppe Aruta] July 8 2015. Now it takes into account Sextante Raster and WMS layers
-
getWMSLayers
public List<WMSLayer> getWMSLayers()
[Giuseppe Aruta] July 8 2015 Gets the list of WMSLayer.class registered in this manager
-
getRasterImageLayers
public List<RasterImageLayer> getRasterImageLayers()
[Giuseppe Aruta] July 8 2015 Gets the list of RasterImageLayer.class registered in this manager
-
indexOf
public int indexOf(Layer layer)
- Returns:
- -1 if the layer does not exist
-
getLayerables
public <T extends Layerable> List<T> getLayerables(Class<T> layerableClass)
To get all Layerables, set layerableClass to Layerable.class.
-
layerManagerCount
public static int layerManagerCount()
-
getEditableLayers
public Collection<Layer> getEditableLayers()
Editability is not enforced; all parties are responsible for heeding the editability of a layer.
-
getBlackboard
public Blackboard getBlackboard()
-
getLayersWithModifiedFeatureCollections
public Collection<Layer> getLayersWithModifiedFeatureCollections()
-
getTemporaryRasterImageLayers
public LinkedList<String> getTemporaryRasterImageLayers()
- Returns:
- a List of Temporary Raster Layers (RasterImageLayer.class in TMP folder)
-
getLayersWithNullDataSource
public LinkedList<Layer> getLayersWithNullDataSource()
-
setCoordinateSystem
public void setCoordinateSystem(CoordinateSystem coordinateSystem)
-
getCoordinateSystem
public CoordinateSystem getCoordinateSystem()
-
fireFeaturesAttChanged
public void fireFeaturesAttChanged(Collection<Feature> features, FeatureEventType type, Layer layer, Collection<Feature> oldFeatureClones)
-
getTask
public Task getTask()
-
-