GEF原理及实现系列(五、请求和编辑策略)

请求和编辑策略是GEF框架中减轻控制器的负担、减小代码耦合度而实现的一种解决方案。
1.请求和编辑策略(Request and EditPolicies) 
    请求和编辑策略对初学者来说是比较难理解的部分,但正是因为这种机制才使得GEF框架功能强大,而且非常灵活。
    在EditPart中,可以通过设置不同的编辑策略(EditPolicies)来处理不同的请求,这样,一方面,可以把代码从EditPart中解放处 理,分别由不同的EditPolicies进行处理,另一方面,用户可以着力于自己的关注点,但由此也增加了学习GEF框架的时间。
    另外,在EditPart中设置编辑策略时,要指定相应的角色(Role),角色只是一个标识,在同一个EditPart中不能存在两个相同角色的编辑策略,读者可以在GEF的联机文档( http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse.gef.doc.isv/guide/guide.html )中找到详细的编辑策略、请求和角色说明。
2.编辑策略的实现
    控制器中通过createEditPolicies()方法添加编辑策略,每种编辑策略负责处理相应的请求。通常请求一般会对模型进行操作,在EditPolicies中,可以通过命令的方式操作模型,命令将在后面介绍。EditPolicies代码如下:
java 代码
 
package com.example.policies;      import org.eclipse.draw2d.geometry.Rectangle;   import org.eclipse.gef.EditPart;   import org.eclipse.gef.Request;   import org.eclipse.gef.commands.Command;   import org.eclipse.gef.editpolicies.XYLayoutEditPolicy;   import org.eclipse.gef.requests.CreateRequest;      import com.example.commands.CreateNodeCommand;   import com.example.commands.MoveNodeCommand;   import com.example.model.Diagram;   import com.example.model.Node;   import com.example.parts.NodePart;      public class DiagramLayoutEditPolicy extends XYLayoutEditPolicy {          protected Command createAddCommand(EditPart child, Object constraint) {           return null;       }       //创建模型位置改变的命令       protected Command createChangeConstraintCommand(EditPart child, Object constraint) {           //如果位置改变的不是Node则返回           if (!(child instanceof NodePart))               return null;           if (!(constraint instanceof Rectangle))               return null;              MoveNodeCommand cmd = new MoveNodeCommand();           cmd.setNode((Node) child.getModel());           //设置模型新的位置信息           cmd.setLocation(((Rectangle) constraint).getLocation());           return cmd;          }       //获得创建模型的命令       protected Command getCreateCommand(CreateRequest request) {           //判断请求创建的是否为Node           if (request.getNewObject() instanceof Node) {               //新建CreateNodeCommand               CreateNodeCommand cmd = new CreateNodeCommand();               //设置父模型               cmd.setDiagram((Diagram) getHost().getModel());               //设置当前模型               cmd.setNode((Node) request.getNewObject());               Rectangle constraint = (Rectangle) getConstraintFor(request);               //设置模型的位置信息               cmd.setLocation(constraint.getLocation());               //返回Command对象               return cmd;           }           return null;       }          protected Command getDeleteDependantCommand(Request request) {           return null;       }   }  

    通过实现此编辑策略,GEF编辑器将能够处理XYLayoutEditPolicy所能响应的相关请求,并交由相应的Command进行处理。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值