MetaNodeTextMouseListener.js
资源名称:WorkFlow.rar [点击查看]
上传用户:ahit0551
上传日期:2009-04-15
资源大小:2345k
文件大小:1k
源码类别:
xml/soap/webservice
开发平台:
Java
- // /**
- * <p>Description: </p>
- * <p>Copyright: Copyright (c) xio.name 2006</p>
- * @author xio
- */ function MetaNodeTextMouseListener(metaNode, wrapper) { this.metaNode = metaNode; this.wrapper = wrapper; } MetaNodeTextMouseListener.prototype = new MouseListener(); MetaNodeTextMouseListener.prototype.onDblClick = function (e) { var state = this.wrapper.getStateMonitor().getState(); if (state != StateMonitor.SELECT) { return; } this.wrapper.getModel().clearSelectedMetaNodeModels(); this.metaNode.startEdit(); };