org.openide.nodes.AbstractNode.clone()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(1.4k)|赞(0)|评价(0)|浏览(86)

本文整理了Java中org.openide.nodes.AbstractNode.clone()方法的一些代码示例,展示了AbstractNode.clone()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。AbstractNode.clone()方法的具体详情如下:
包路径:org.openide.nodes.AbstractNode
类名称:AbstractNode
方法名:clone

AbstractNode.clone介绍

[英]Clone the node. If the object implements Cloneable, that is used; otherwise a FilterNodeis created.
[中]克隆节点。如果对象实现可克隆,则使用该克隆;否则将创建FilterNode。

代码示例

代码示例来源:origin: org.netbeans.api/org-openide-nodes

/** Clone the node. If the object implements {@link Cloneable},
* that is used; otherwise a {@link FilterNode filter node}
* is created.
*
* @return copy of this node
*/
public Node cloneNode() {
  try {
    if (this instanceof Cloneable) {
      return (Node) clone();
    }
  } catch (CloneNotSupportedException ex) {
  }
  return new FilterNode(this);
}

代码示例来源:origin: net.sf.squirrel-sql.thirdparty-non-maven/openide

/** Clone the node. If the object implements {@link Cloneable},
* that is used; otherwise a {@link FilterNode filter node}
* is created.
*
* @return copy of this node
*/
public Node cloneNode () {
  try {
    if (this instanceof Cloneable) {
      return (Node)clone ();
    }
  } catch (CloneNotSupportedException ex) {
  }
  return new FilterNode (this);
}

代码示例来源:origin: net.sf.squirrel-sql.thirdpary-non-maven/openide

/** Clone the node. If the object implements {@link Cloneable},
* that is used; otherwise a {@link FilterNode filter node}
* is created.
*
* @return copy of this node
*/
public Node cloneNode () {
  try {
    if (this instanceof Cloneable) {
      return (Node)clone ();
    }
  } catch (CloneNotSupportedException ex) {
  }
  return new FilterNode (this);
}

相关文章

微信公众号

最新文章

更多