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

📄 treenodeobject.java

📁 以前做的一个j2ee的项目
💻 JAVA
字号:
package gov.gdlt.ssgly.taxweb.mbean.qxgl;

import java.util.*;

public class TreeNodeObject {
    private NodeValueObject thisNode;
    private Vector childNodes;

    public TreeNodeObject() {
    }

    public TreeNodeObject(NodeValueObject thisNode, Vector v) {
        this.thisNode = thisNode;
        this.childNodes = v;
    }

    public Vector getChildNodes() {
        return this.childNodes;
    }

    public NodeValueObject getThisNode() {
        return thisNode;
    }

    public void setChildNodes(Vector newValue) {
        this.childNodes = newValue;
    }

    public void setThisNode(NodeValueObject thisNode) {
        this.thisNode = thisNode;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -