home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2003 March / DPPCPRO0303.ISO / Netfusion / data1.cab / Components / SiteMapper / tree_entry.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-12-10  |  911 b   |  34 lines

  1. import java.util.Vector;
  2.  
  3. public class tree_entry {
  4.    private String name;
  5.    private String url;
  6.    int level;
  7.    int grid_x;
  8.    int grid_y;
  9.    Vector children;
  10.    boolean in_use;
  11.    boolean publish;
  12.  
  13.    public String get_name() {
  14.       return this.name;
  15.    }
  16.  
  17.    public String get_url() {
  18.       return this.url;
  19.    }
  20.  
  21.    tree_entry(String name, String url, int level, boolean publish) {
  22.       this.name = name;
  23.       this.url = url;
  24.       this.level = level;
  25.       this.children = null;
  26.       this.in_use = true;
  27.       this.publish = publish;
  28.    }
  29.  
  30.    public int get_level() {
  31.       return this.level;
  32.    }
  33. }
  34.