com.antiaction.raptor.dao.TreeItem Maven / Gradle / Ivy
/*
* Created on 26/05/2010
*
* TODO To change the template for this generated file go to
* Window - Preferences - Java - Code Style - Code Templates
*/
package com.antiaction.raptor.dao;
public class TreeItem {
public int id = 0;
public int type_id = 0;
public String name = null;
public String icon = null;
public int children = 0;
public TreeItem() {
}
public TreeItem(int id, int type_id, String name, String icon, int children) {
this.id = id;
this.type_id = type_id;
this.name = name;
this.icon = icon;
this.children = children;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy