コード例 #1
0
 /** Undo the command. */
 public void undo() {
   ServerWorkingCopy swc = (ServerWorkingCopy) server;
   swc.setAutoPublishTime(oldTime);
 }
コード例 #2
0
 /** Execute the command. */
 public void execute() {
   ServerWorkingCopy swc = (ServerWorkingCopy) server;
   oldTime = swc.getAutoPublishTime();
   swc.setAutoPublishTime(time);
 }