All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.jinghui70.rainbow.utils.CommonTreeObject Maven / Gradle / Ivy

There is a newer version: 5.2.1
Show newest version
package io.github.jinghui70.rainbow.utils;

public class CommonTreeObject extends TreeNode {

    private String id;

    private String name;

    public String getId() {
        return id;
    }

    public void setId(String id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public CommonTreeObject() {
    }

    public CommonTreeObject (String id, String name) {
        this.id = id;
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy