Uses of Class
org.openstreetmap.josm.data.conflict.Conflict
-
Packages that use Conflict Package Description org.openstreetmap.josm.command.conflict Provides commands for handling conflicts.org.openstreetmap.josm.data.conflict Provides the classes for editionconflicts
betweenOsmPrimitive
sorg.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives
:Node
,Way
,Relation
Users
Tags
Changesets
Utilities classesorg.openstreetmap.josm.gui.conflict.pair Provides the classes for displaying conflicts as pair of lists.org.openstreetmap.josm.gui.conflict.pair.nodes Provides the classes for displaying conflicts in ways list of nodes.org.openstreetmap.josm.gui.conflict.pair.properties Provides the classes for displaying conflicts in OSM primitive properties.org.openstreetmap.josm.gui.conflict.pair.relation Provides the classes for displaying conflicts in OSM primitive relation memberships.org.openstreetmap.josm.gui.conflict.pair.tags Provides the classes for displaying conflicts in OSM primitive tags.org.openstreetmap.josm.gui.dialogs Provides three kinds of dialogs: Toggle dialogs on the right side of the GUI, that can be turned on, off, attached or detached from the GUI Changeset dialog based on a standalone implementation, dedicated to OSM changesets management Extended dialogs for everything else -
-
Uses of Conflict in org.openstreetmap.josm.command.conflict
Fields in org.openstreetmap.josm.command.conflict declared as Conflict Modifier and Type Field Description private Conflict<? extends OsmPrimitive>
ConflictAddCommand. conflict
private Conflict<? extends OsmPrimitive>
CoordinateConflictResolveCommand. conflict
the conflict to resolveprivate Conflict<? extends OsmPrimitive>
DeletedStateConflictResolveCommand. conflict
the conflict to resolveprivate Conflict<? extends OsmPrimitive>
ModifiedConflictResolveCommand. conflict
the conflict to resolveprivate Conflict<Relation>
RelationMemberConflictResolverCommand. conflict
the conflict to resolveprivate Conflict<? extends OsmPrimitive>
TagConflictResolveCommand. conflict
the conflict to resolveprivate Conflict<? extends OsmPrimitive>
VersionConflictResolveCommand. conflict
the conflict to resolveprivate Conflict<Way>
WayNodesConflictResolverCommand. conflict
the conflict to resolveMethods in org.openstreetmap.josm.command.conflict with parameters of type Conflict Modifier and Type Method Description protected void
ConflictResolveCommand. rememberConflict(Conflict<?> c)
remembers a conflict in the internal list of remembered conflictsConstructors in org.openstreetmap.josm.command.conflict with parameters of type Conflict Constructor Description ConflictAddCommand(DataSet ds, Conflict<? extends OsmPrimitive> conflict)
Constructs a newConflictAddCommand
.CoordinateConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict, MergeDecisionType decision)
constructor for coordinate conflictDeletedStateConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict, MergeDecisionType decision)
Constructs a newDeletedStateConflictResolveCommand
.ModifiedConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict)
constructorRelationMemberConflictResolverCommand(Conflict<? extends OsmPrimitive> conflict, java.util.List<RelationMember> mergedMembers)
Constructs a newRelationMemberConflictResolverCommand
.TagConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict, java.util.List<TagMergeItem> mergeItems)
constructorVersionConflictResolveCommand(Conflict<? extends OsmPrimitive> conflict)
constructorWayNodesConflictResolverCommand(Conflict<? extends OsmPrimitive> conflict, java.util.List<Node> mergedNodeList)
Constructs a newWayNodesConflictResolverCommand
. -
Uses of Conflict in org.openstreetmap.josm.data.conflict
Fields in org.openstreetmap.josm.data.conflict with type parameters of type Conflict Modifier and Type Field Description private java.util.List<Conflict<? extends OsmPrimitive>>
ConflictCollection. conflicts
Methods in org.openstreetmap.josm.data.conflict that return Conflict Modifier and Type Method Description Conflict<?>
ConflictCollection. get(int idx)
Replies the conflict at positionidx
Conflict<?>
ConflictCollection. getConflictForMy(OsmPrimitive my)
Replies the conflict for theOsmPrimitive
my
, null if no such conflict exists.Conflict<?>
ConflictCollection. getConflictForTheir(OsmPrimitive their)
Replies the conflict for theOsmPrimitive
their
, null if no such conflict exists.Methods in org.openstreetmap.josm.data.conflict that return types with arguments of type Conflict Modifier and Type Method Description java.util.List<Conflict<?>>
ConflictCollection. get()
Replies the conflicts as list.java.util.Collection<Conflict<? extends OsmPrimitive>>
ConflictCollection. getNodeConflicts()
Returns the list of conflicts involving nodes.java.util.Collection<Conflict<? extends OsmPrimitive>>
ConflictCollection. getRelationConflicts()
Returns the list of conflicts involving relations.java.util.Collection<Conflict<? extends OsmPrimitive>>
ConflictCollection. getWayConflicts()
Returns the list of conflicts involving ways.java.util.Iterator<Conflict<?>>
ConflictCollection. iterator()
Replies the iterator for this collection.Methods in org.openstreetmap.josm.data.conflict with parameters of type Conflict Modifier and Type Method Description void
ConflictCollection. add(Conflict<?> conflict)
Adds a conflict to the collection of conflicts.protected void
ConflictCollection. addConflict(Conflict<?> conflict)
Adds a conflict to the collectionboolean
ConflictCollection. hasConflict(Conflict<?> c)
Replies true, if this collection includes a given conflictvoid
ConflictCollection. remove(Conflict<?> conflict)
removes a conflict from this collectionMethod parameters in org.openstreetmap.josm.data.conflict with type arguments of type Conflict Modifier and Type Method Description void
ConflictCollection. add(java.util.Collection<Conflict<?>> otherConflicts)
Add the conflicts inotherConflicts
to this collection of conflictsprivate long
ConflictCollection. getNumberOfConflicts(java.util.function.Predicate<Conflict<?>> predicate)
-
Uses of Conflict in org.openstreetmap.josm.data.osm
Methods in org.openstreetmap.josm.data.osm with parameters of type Conflict Modifier and Type Method Description protected void
DataSetMerger. addConflict(Conflict<?> c)
private void
DataSetMerger. replaceConflict(Conflict<?> oldConflict, Conflict<?> newConflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.conflict.pair
Fields in org.openstreetmap.josm.gui.conflict.pair declared as Conflict Modifier and Type Field Description private Conflict<? extends OsmPrimitive>
ConflictResolver. conflict
Methods in org.openstreetmap.josm.gui.conflict.pair with parameters of type Conflict Modifier and Type Method Description abstract C
AbstractListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)
Builds the command to resolve conflicts in the list.void
ConflictResolver. populate(Conflict<? extends OsmPrimitive> conflict)
populates the conflict resolver with the conflicts between my and theirvoid
IConflictResolver. populate(Conflict<? extends OsmPrimitive> conflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.conflict.pair.nodes
Methods in org.openstreetmap.josm.gui.conflict.pair.nodes with parameters of type Conflict Modifier and Type Method Description WayNodesConflictResolverCommand
NodeListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)
void
NodeListMerger. populate(Conflict<? extends OsmPrimitive> conflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.conflict.pair.properties
Methods in org.openstreetmap.josm.gui.conflict.pair.properties with parameters of type Conflict Modifier and Type Method Description java.util.List<Command>
PropertiesMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)
Builds the command(s) to apply the conflict resolutions to my primitivevoid
PropertiesMergeModel. populate(Conflict<? extends OsmPrimitive> conflict)
Populates the model with the differences between local and server versionvoid
PropertiesMerger. populate(Conflict<? extends OsmPrimitive> conflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.conflict.pair.relation
Methods in org.openstreetmap.josm.gui.conflict.pair.relation with parameters of type Conflict Modifier and Type Method Description RelationMemberConflictResolverCommand
RelationMemberListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)
void
RelationMemberMerger. populate(Conflict<? extends OsmPrimitive> conflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.conflict.pair.tags
Methods in org.openstreetmap.josm.gui.conflict.pair.tags with parameters of type Conflict Modifier and Type Method Description TagConflictResolveCommand
TagMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)
void
TagMerger. populate(Conflict<? extends OsmPrimitive> conflict)
-
Uses of Conflict in org.openstreetmap.josm.gui.dialogs
Methods in org.openstreetmap.josm.gui.dialogs that return Conflict Modifier and Type Method Description Conflict<? extends OsmPrimitive>
ConflictDialog. getSelectedConflict()
returns the first selected item of the conflicts list
-