home *** CD-ROM | disk | FTP | other *** search
- import java.util.Vector;
-
- public class tree_entry {
- private String name;
- private String url;
- int level;
- int grid_x;
- int grid_y;
- Vector children;
- boolean in_use;
- boolean publish;
-
- public String get_name() {
- return this.name;
- }
-
- public String get_url() {
- return this.url;
- }
-
- tree_entry(String name, String url, int level, boolean publish) {
- this.name = name;
- this.url = url;
- this.level = level;
- this.children = null;
- this.in_use = true;
- this.publish = publish;
- }
-
- public int get_level() {
- return this.level;
- }
- }
-