|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjavax.swing.AbstractAction
org.openstreetmap.josm.actions.JosmAction
org.openstreetmap.josm.actions.UnGlueAction
public class UnGlueAction
Duplicate nodes that are used by multiple ways. Resulting nodes are identical, up to their position. This is the opposite of the MergeNodesAction. If a single node is selected, it will copy that node and remove all tags from the old one
Field Summary | |
---|---|
private Node |
selectedNode
|
private java.util.Set<Node> |
selectedNodes
|
private Way |
selectedWay
|
Fields inherited from class org.openstreetmap.josm.actions.JosmAction |
---|
sc |
Fields inherited from class javax.swing.AbstractAction |
---|
changeSupport, enabled |
Fields inherited from interface javax.swing.Action |
---|
ACCELERATOR_KEY, ACTION_COMMAND_KEY, DEFAULT, DISPLAYED_MNEMONIC_INDEX_KEY, LARGE_ICON_KEY, LONG_DESCRIPTION, MNEMONIC_KEY, NAME, SELECTED_KEY, SHORT_DESCRIPTION, SMALL_ICON |
Constructor Summary | |
---|---|
UnGlueAction()
Create a new UnGlueAction. |
Method Summary | |
---|---|
void |
actionPerformed(java.awt.event.ActionEvent e)
Called when the action is executed. |
protected boolean |
checkAndConfirmOutlyingUnglue()
|
private boolean |
checkForUnglueNode(java.util.Collection<? extends OsmPrimitive> selection)
Checks if selection is suitable for ungluing. |
private boolean |
checkSelection(java.util.Collection<? extends OsmPrimitive> selection)
Checks if the selection consists of something we can work with. |
private boolean |
checkSelection2(java.util.Collection<? extends OsmPrimitive> selection)
Checks if the selection consists of something we can work with. |
private void |
fixRelations(Node originalNode,
java.util.List<Command> cmds,
java.util.List<Node> newNodes)
put all newNodes into the same relation(s) that originalNode is in |
private Way |
modifyWay(Node originalNode,
Way w,
java.util.List<Command> cmds,
java.util.List<Node> newNodes)
dupe the given node of the given way assume that OrginalNode is in the way -> the new node will be put into the parameter newNodes. |
private void |
unglueNode(java.awt.event.ActionEvent e)
Assumes there is one tagged Node stored in selectedNode that it will try to unglue (= copy node and remove all tags from the old one. |
private void |
unglueWays()
dupe a single node into as many nodes as there are ways using it, OR dupe a single node once, and put the copy on the selected way |
private void |
unglueWays2()
dupe all nodes that are selected, and put the copies on the selected way |
protected void |
updateEnabledState()
Override in subclasses to update the enabled state of the action when something in the JOSM state changes, i.e. |
protected void |
updateEnabledState(java.util.Collection<? extends OsmPrimitive> selection)
Override in subclasses to update the enabled state of the action if the collection of selected primitives changes. |
Methods inherited from class org.openstreetmap.josm.actions.JosmAction |
---|
destroy, getCurrentDataSet, getEditLayer, getShortcut, initEnabledState, installAdapters, setTooltip |
Methods inherited from class javax.swing.AbstractAction |
---|
addPropertyChangeListener, clone, firePropertyChange, getKeys, getPropertyChangeListeners, getValue, isEnabled, putValue, removePropertyChangeListener, setEnabled |
Methods inherited from class java.lang.Object |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private Node selectedNode
private Way selectedWay
private java.util.Set<Node> selectedNodes
Constructor Detail |
---|
public UnGlueAction()
Method Detail |
---|
public void actionPerformed(java.awt.event.ActionEvent e)
private void unglueNode(java.awt.event.ActionEvent e)
private boolean checkForUnglueNode(java.util.Collection<? extends OsmPrimitive> selection)
The
- selection to check against
private boolean checkSelection(java.util.Collection<? extends OsmPrimitive> selection)
private boolean checkSelection2(java.util.Collection<? extends OsmPrimitive> selection)
private Way modifyWay(Node originalNode, Way w, java.util.List<Command> cmds, java.util.List<Node> newNodes)
private void fixRelations(Node originalNode, java.util.List<Command> cmds, java.util.List<Node> newNodes)
private void unglueWays()
private void unglueWays2()
protected void updateEnabledState()
JosmAction
JosmAction.updateEnabledState(Collection)
to respond to changes in the collection
of selected primitives.
Default behavior is empty.
updateEnabledState
in class JosmAction
JosmAction.updateEnabledState(Collection)
,
JosmAction.initEnabledState()
protected void updateEnabledState(java.util.Collection<? extends OsmPrimitive> selection)
JosmAction
updateEnabledState
in class JosmAction
selection
- the collection of selected primitives; may be empty, but not nullJosmAction.updateEnabledState()
,
JosmAction.initEnabledState()
protected boolean checkAndConfirmOutlyingUnglue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |