KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > netbeans > modules > piagetproject > treestructure > Info


1 /*
2  * Info.java
3  *
4  * Created on July 21, 2005, 5:36 PM
5  *
6  * To change this template, choose Tools | Options and locate the template under
7  * the Source Creation and Management node. Right-click the template and choose
8  * Open. You can then make changes to the template in the Source Editor.
9  */

10
11 package org.netbeans.modules.piagetproject.treestructure;
12
13 /**
14  *
15  * @author loicsegapelli
16  */

17 public class Info {
18     
19     public String JavaDoc path, level, username;
20     
21     /** Creates a new instance of Info */
22     public Info(String JavaDoc path, String JavaDoc username, String JavaDoc level){
23         this.level = level;
24         this.path = path;
25         this.username = username;
26     }
27     
28 }
29
Popular Tags