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 editionconflictsbetweenOsmPrimitivesorg.openstreetmap.josm.data.osm Provides the classes for OSM data:Primitives:Node,Way,RelationUsersTagsChangesetsUtilities 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. conflictprivate Conflict<? extends OsmPrimitive>CoordinateConflictResolveCommand. conflictthe conflict to resolveprivate Conflict<? extends OsmPrimitive>DeletedStateConflictResolveCommand. conflictthe conflict to resolveprivate Conflict<? extends OsmPrimitive>ModifiedConflictResolveCommand. conflictthe conflict to resolveprivate Conflict<Relation>RelationMemberConflictResolverCommand. conflictthe conflict to resolveprivate Conflict<? extends OsmPrimitive>TagConflictResolveCommand. conflictthe conflict to resolveprivate Conflict<? extends OsmPrimitive>VersionConflictResolveCommand. conflictthe conflict to resolveprivate Conflict<Way>WayNodesConflictResolverCommand. conflictthe conflict to resolveMethods in org.openstreetmap.josm.command.conflict with parameters of type Conflict Modifier and Type Method Description protected voidConflictResolveCommand. 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. conflictsMethods in org.openstreetmap.josm.data.conflict that return Conflict Modifier and Type Method Description Conflict<?>ConflictCollection. get(int idx)Replies the conflict at positionidxConflict<?>ConflictCollection. getConflictForMy(OsmPrimitive my)Replies the conflict for theOsmPrimitivemy, null if no such conflict exists.Conflict<?>ConflictCollection. getConflictForTheir(OsmPrimitive their)Replies the conflict for theOsmPrimitivetheir, 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 voidConflictCollection. add(Conflict<?> conflict)Adds a conflict to the collection of conflicts.protected voidConflictCollection. addConflict(Conflict<?> conflict)Adds a conflict to the collectionbooleanConflictCollection. hasConflict(Conflict<?> c)Replies true, if this collection includes a given conflictvoidConflictCollection. 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 voidConflictCollection. add(java.util.Collection<Conflict<?>> otherConflicts)Add the conflicts inotherConflictsto this collection of conflictsprivate longConflictCollection. 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 voidDataSetMerger. addConflict(Conflict<?> c)private voidDataSetMerger. 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. conflictMethods in org.openstreetmap.josm.gui.conflict.pair with parameters of type Conflict Modifier and Type Method Description abstract CAbstractListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)Builds the command to resolve conflicts in the list.voidConflictResolver. populate(Conflict<? extends OsmPrimitive> conflict)populates the conflict resolver with the conflicts between my and theirvoidIConflictResolver. 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 WayNodesConflictResolverCommandNodeListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)voidNodeListMerger. 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 primitivevoidPropertiesMergeModel. populate(Conflict<? extends OsmPrimitive> conflict)Populates the model with the differences between local and server versionvoidPropertiesMerger. 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 RelationMemberConflictResolverCommandRelationMemberListMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)voidRelationMemberMerger. 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 TagConflictResolveCommandTagMergeModel. buildResolveCommand(Conflict<? extends OsmPrimitive> conflict)voidTagMerger. 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
-