⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 movecommand.java

📁 GEF初学者可以用来对照的小例子
💻 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 + -