Class MergeAction
- java.lang.Object
-
- javax.swing.AbstractAction
-
- org.openstreetmap.josm.gui.dialogs.layer.MergeAction
-
- All Implemented Interfaces:
java.awt.event.ActionListener,java.io.Serializable,java.lang.Cloneable,java.util.EventListener,javax.swing.Action,IEnabledStateUpdating,Layer.LayerAction,Layer.MultiLayerAction
public final class MergeAction extends javax.swing.AbstractAction implements IEnabledStateUpdating, Layer.LayerAction, Layer.MultiLayerAction
The action to merge the currently selected layer into another layer.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Modifier Constructor Description MergeAction(java.util.List<Layer> layers, LayerListDialog.LayerListModel model)Constructs a newMergeAction.privateMergeAction(Layer layer, java.util.List<Layer> layers, LayerListDialog.LayerListModel model)Constructs a newMergeAction.MergeAction(Layer layer, LayerListDialog.LayerListModel model)Constructs a newMergeAction.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidactionPerformed(java.awt.event.ActionEvent e)java.awt.ComponentcreateMenuComponent()Creates and return the menu component.MergeActiongetMultiLayerAction(java.util.List<Layer> layers)Returns the action for a given list of layers.booleansupportLayers(java.util.List<Layer> layers)Determines if this action supports a given list of layers.voidupdateEnabledState()Called after the layer model has changed.-
Methods inherited from class javax.swing.AbstractAction
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled
-
-
-
-
Constructor Detail
-
MergeAction
public MergeAction(Layer layer, LayerListDialog.LayerListModel model)
Constructs a newMergeAction.- Parameters:
layer- the layermodel- layer list model- Throws:
java.lang.IllegalArgumentException- iflayeris null
-
MergeAction
public MergeAction(java.util.List<Layer> layers, LayerListDialog.LayerListModel model)
Constructs a newMergeAction.- Parameters:
layers- the layer listmodel- layer list model- Throws:
java.lang.IllegalArgumentException- iflayersis null
-
MergeAction
private MergeAction(Layer layer, java.util.List<Layer> layers, LayerListDialog.LayerListModel model)
Constructs a newMergeAction.- Parameters:
layer- the layer (null if layer list if specified)layers- the layer list (null if a single layer is specified)model- layer list model
-
-
Method Detail
-
actionPerformed
public void actionPerformed(java.awt.event.ActionEvent e)
- Specified by:
actionPerformedin interfacejava.awt.event.ActionListener
-
updateEnabledState
public void updateEnabledState()
Description copied from interface:IEnabledStateUpdatingCalled after the layer model has changed.- Specified by:
updateEnabledStatein interfaceIEnabledStateUpdating
-
supportLayers
public boolean supportLayers(java.util.List<Layer> layers)
Description copied from interface:Layer.LayerActionDetermines if this action supports a given list of layers.- Specified by:
supportLayersin interfaceLayer.LayerAction- Parameters:
layers- list of layers- Returns:
trueif this action supports the given list of layers,falseotherwise
-
createMenuComponent
public java.awt.Component createMenuComponent()
Description copied from interface:Layer.LayerActionCreates and return the menu component.- Specified by:
createMenuComponentin interfaceLayer.LayerAction- Returns:
- the menu component
-
getMultiLayerAction
public MergeAction getMultiLayerAction(java.util.List<Layer> layers)
Description copied from interface:Layer.MultiLayerActionReturns the action for a given list of layers.- Specified by:
getMultiLayerActionin interfaceLayer.MultiLayerAction- Parameters:
layers- list of layers- Returns:
- the action for the given list of layers
-
-