KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sf > invicta > ant > taskdef > Module


1 package net.sf.invicta.ant.taskdef;
2
3 public class Module {
4     private String JavaDoc type;
5     private String JavaDoc file;
6     private String JavaDoc name;
7
8     /**
9      * Constructor for Module.
10      */

11     public Module() {
12         super();
13     }
14
15     /**
16      * Returns the file.
17      * @return String
18      */

19     public String JavaDoc getFile() {
20         return file;
21     }
22
23     /**
24      * Returns the name.
25      * @return String
26      */

27     public String JavaDoc getName() {
28         return name;
29     }
30
31     /**
32      * Returns the type.
33      * @return String
34      */

35     public String JavaDoc getType() {
36         return type;
37     }
38
39     /**
40      * Sets the file.
41      * @param file The file to set
42      */

43     public void setFile(String JavaDoc file) {
44         this.file = file;
45     }
46
47     /**
48      * Sets the name.
49      * @param name The name to set
50      */

51     public void setName(String JavaDoc name) {
52         this.name = name;
53     }
54
55     /**
56      * Sets the type.
57      * @param type The type to set
58      */

59     public void setType(String JavaDoc type) {
60         this.type = type;
61     }
62
63 }
64
Popular Tags