home *** CD-ROM | disk | FTP | other *** search
- class Example {
- protected String Type;
- protected String Description;
- protected String Location;
-
- public Example(String var1, String var2, String var3) {
- this.Type = var1;
- this.Description = var2;
- this.Location = var3;
- }
-
- public String getType() {
- return this.Type;
- }
-
- public String getDescription() {
- return this.Description;
- }
-
- public String getLocation() {
- return this.Location;
- }
- }
-