public class DownloadReferrersAction extends JosmAction
sc| Constructor and Description |
|---|
DownloadReferrersAction()
Constructs a new
DownloadReferrersAction. |
| Modifier and Type | Method and Description |
|---|---|
void |
actionPerformed(java.awt.event.ActionEvent e) |
static void |
downloadReferrers(OsmDataLayer targetLayer,
java.util.Collection<OsmPrimitive> children)
Downloads the primitives referring to the primitives in
primitives
into the target layer targetLayer. |
static void |
downloadReferrers(OsmDataLayer targetLayer,
long id,
OsmPrimitiveType type)
Downloads the primitives referring to the primitive given by
id and
type. |
static void |
downloadReferrers(OsmDataLayer targetLayer,
java.util.Map<java.lang.Long,OsmPrimitiveType> children)
Downloads the primitives referring to the primitives in
primitives
into the target layer targetLayer. |
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.
|
destroy, getCurrentDataSet, getEditLayer, getShortcut, initEnabledState, installAdapters, setTooltippublic DownloadReferrersAction()
DownloadReferrersAction.public static void downloadReferrers(OsmDataLayer targetLayer, java.util.Collection<OsmPrimitive> children) throws java.lang.IllegalArgumentException
primitives
into the target layer targetLayer.
Does nothing if primitives is null or empty.targetLayer - the target layer. Must not be null.children - the collection of child primitives.java.lang.IllegalArgumentException - thrown if targetLayer is nullpublic static void downloadReferrers(OsmDataLayer targetLayer, java.util.Map<java.lang.Long,OsmPrimitiveType> children) throws java.lang.IllegalArgumentException
primitives
into the target layer targetLayer.
Does nothing if primitives is null or empty.targetLayer - the target layer. Must not be null.children - the collection of primitives, given as map of ids and typesjava.lang.IllegalArgumentException - thrown if targetLayer is nullpublic static void downloadReferrers(OsmDataLayer targetLayer, long id, OsmPrimitiveType type) throws java.lang.IllegalArgumentException
id and
type.targetLayer - the target layer. Must not be null.id - the primitive id. id > 0 required.type - the primitive type. type != null requiredjava.lang.IllegalArgumentException - thrown if targetLayer is nulljava.lang.IllegalArgumentException - thrown if id <= 0java.lang.IllegalArgumentException - thrown if type == nullpublic void actionPerformed(java.awt.event.ActionEvent e)
protected void updateEnabledState()
JosmActionJosmAction.updateEnabledState(Collection) to respond to changes in the collection
of selected primitives.
Default behavior is empty.updateEnabledState in class JosmActionJosmAction.updateEnabledState(Collection),
JosmAction.initEnabledState()protected void updateEnabledState(java.util.Collection<? extends OsmPrimitive> selection)
JosmActionupdateEnabledState in class JosmActionselection - the collection of selected primitives; may be empty, but not nullJosmAction.updateEnabledState(),
JosmAction.initEnabledState()