Changeset 6883 in josm for trunk/src/org/openstreetmap/josm/command/PseudoCommand.java
- Timestamp:
- 2014-02-25T01:31:24+01:00 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/command/PseudoCommand.java
r5926 r6883 13 13 * executed or undone. 14 14 */ 15 abstract public class PseudoCommand { 15 public abstract class PseudoCommand { 16 16 17 /** 17 18 * Provides a description text representing this command. 18 19 */ 19 abstract publicString getDescriptionText();20 public abstract String getDescriptionText(); 20 21 21 22 /** … … 29 30 * Return the primitives that take part in this command. 30 31 */ 31 abstract publicCollection<? extends OsmPrimitive> getParticipatingPrimitives();32 public abstract Collection<? extends OsmPrimitive> getParticipatingPrimitives(); 32 33 33 34 /**
Note:
See TracChangeset
for help on using the changeset viewer.