MetaNodeTextMouseListener.js
上传用户:ahit0551
上传日期:2009-04-15
资源大小:2345k
文件大小:1k
源码类别:

xml/soap/webservice

开发平台:

Java

  1. // /**
  2.  * <p>Description: </p>
  3.  * <p>Copyright: Copyright (c) xio.name 2006</p>
  4.  * @author xio
  5.  */ 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(); };