treenodeobject.java

来自「以前做的一个j2ee的项目」· Java 代码 · 共 33 行

JAVA
33
字号
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 + =
减小字号Ctrl + -
显示快捷键?