📄 movecommand.java
字号:
package com.dss.moon.gef.commands;
import org.eclipse.draw2d.geometry.Point;
import org.eclipse.draw2d.geometry.Rectangle;
import org.eclipse.gef.commands.Command;
import com.dss.moon.gef.model.Ellipse;
public class MoveCommand extends Command{
private Ellipse node;
//private Point oldloc;
//private Point newloc;
private Rectangle constraint,oldcon;
public void setConstraint(Rectangle p){
constraint = p;
}
public void setNode(Ellipse n){
node = n;
}
public String getLabel(){
return "move node";
}
public void execute(){
oldcon = node.getConstraint();
node.setConstraint(constraint);
}
public void redo(){
execute();
}
public void undo(){
node.setConstraint(oldcon);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -