Uses of Class
org.openstreetmap.josm.gui.dialogs.relation.RelationEditor

Packages that use RelationEditor
org.openstreetmap.josm.gui.dialogs.relation   
 

Uses of RelationEditor in org.openstreetmap.josm.gui.dialogs.relation
 

Subclasses of RelationEditor in org.openstreetmap.josm.gui.dialogs.relation
 class GenericRelationEditor
          This dialog is for editing relations.
 

Fields in org.openstreetmap.josm.gui.dialogs.relation with type parameters of type RelationEditor
private static java.util.ArrayList<java.lang.Class<RelationEditor>> RelationEditor.editors
          the list of registered relation editor classes
private  java.util.HashMap<RelationDialogManager.DialogContext,RelationEditor> RelationDialogManager.openDialogs
          the map of open dialogs
 

Methods in org.openstreetmap.josm.gui.dialogs.relation that return RelationEditor
static RelationEditor RelationEditor.getEditor(OsmDataLayer layer, Relation r, java.util.Collection<RelationMember> selectedMembers)
          This is a factory method that creates an appropriate RelationEditor instance suitable for editing the relation that was passed in as an argument.
 RelationEditor RelationDialogManager.getEditorForRelation(OsmDataLayer layer, Relation relation)
          Replies the editor for the relation managed by layer.
 

Methods in org.openstreetmap.josm.gui.dialogs.relation with parameters of type RelationEditor
protected  boolean RelationDialogManager.hasEditorWithCloseUpperLeftCorner(java.awt.Point p, RelationEditor thisEditor)
          Replies true, if there is another open RelationEditor whose upper left corner is close to p.
 void RelationDialogManager.positionOnScreen(RelationEditor editor)
          Positions a RelationEditor on the screen.
 void RelationDialogManager.register(OsmDataLayer layer, Relation relation, RelationEditor editor)
          Register the relation editor for a relation managed by a OsmDataLayer.
 void RelationDialogManager.updateContext(OsmDataLayer layer, Relation relation, RelationEditor editor)
           
 

Method parameters in org.openstreetmap.josm.gui.dialogs.relation with type arguments of type RelationEditor
 void RelationEditor.registerRelationEditor(java.lang.Class<RelationEditor> clazz)
          Registers a relation editor class.
 



JOSM