Ignore:
Timestamp:
2006-04-21T14:31:51+02:00 (20 years ago)
Author:
imi
Message:
  • added conflicts and resolve conflict dialog

This is one of those "changed everything" checkpoint.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/org/openstreetmap/josm/command/SequenceCommand.java

    r31 r86  
    1010 * @author imi
    1111 */
    12 public class SequenceCommand implements Command {
     12public class SequenceCommand extends Command {
    1313
    1414        /**
     
    2626        }
    2727       
    28         public void executeCommand() {
     28        @Override public void executeCommand() {
    2929                for (Command c : sequenz)
    3030                        c.executeCommand();
    3131        }
    3232
    33         public void undoCommand() {
     33        @Override public void undoCommand() {
    3434                for (int i = sequenz.length-1; i >= 0; --i)
    3535                        sequenz[i].undoCommand();
    3636        }
    3737
    38         public void fillModifiedData(Collection<OsmPrimitive> modified,
    39                         Collection<OsmPrimitive> deleted, Collection<OsmPrimitive> added) {
     38        @Override public void fillModifiedData(Collection<OsmPrimitive> modified, Collection<OsmPrimitive> deleted, Collection<OsmPrimitive> added) {
    4039                for (Command c : sequenz)
    4140                        c.fillModifiedData(modified, deleted, added);
Note: See TracChangeset for help on using the changeset viewer.