movecommand.java
来自「GEF基础源码」· Java 代码 · 共 39 行
JAVA
39 行
package com.jixy.study.gef.util;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.gef.commands.Command;
import com.jixy.study.gef.model.Ellipse;
public class MoveCommand extends Command {
private Ellipse node;
private Point newPos;
private Point oldPos;
public void setLocation(Point p) {
this.newPos = p;
}
public void setNode(Ellipse node) {
this.node = node;
}
public String getLabel() {
return "Move Node";
}
public void execute() {
oldPos = this.node.getLocation();
this.node.setLocation(newPos);
}
public void undo() {
this.node.setLocation(oldPos);
}
public void redo() {
this.node.setLocation(newPos);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?