KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > mockobjects > vaj > MockProject


1 package com.mockobjects.vaj;
2
3 import com.ibm.ivj.util.base.*;
4 import com.mockobjects.*;
5
6 public class MockProject extends MockObject implements Project {
7
8     /**
9      * MockProject constructor comment.
10      */

11     public MockProject() {
12         super();
13     }
14
15     /**
16      * clearToolRepositoryData method comment.
17      */

18     public void clearToolRepositoryData(String JavaDoc arg1) throws IvjException {}
19
20     /**
21      * clearToolWorkspaceData method comment.
22      */

23     public void clearToolWorkspaceData(String JavaDoc arg1) throws IvjException {}
24
25     /**
26      * createDefaultPackage method comment.
27      */

28     public com.ibm.ivj.util.base.Package createDefaultPackage(boolean arg1) throws IvjException {
29         return null;
30     }
31
32     /**
33      * createNewEdition method comment.
34      */

35     public void createNewEdition() throws IvjException {}
36
37     /**
38      * createPackage method comment.
39      */

40     public com.ibm.ivj.util.base.Package createPackage(String JavaDoc arg1, boolean arg2) throws IvjException {
41         return null;
42     }
43
44     /**
45      * createVersion method comment.
46      */

47     public void createVersion(String JavaDoc arg1) throws IvjException {}
48
49     /**
50      * delete method comment.
51      */

52     public void delete() throws IvjException {}
53
54     /**
55      * getAllEditions method comment.
56      */

57     public com.ibm.ivj.util.base.ProjectEdition[] getAllEditions() throws IvjException {
58         return null;
59     }
60
61     /**
62      * getComment method comment.
63      */

64     public String JavaDoc getComment() throws IvjException {
65         return null;
66     }
67
68     /**
69      * getDefaultPackage method comment.
70      */

71     public com.ibm.ivj.util.base.Package getDefaultPackage() throws IvjException {
72         return null;
73     }
74
75     /**
76      * getEdition method comment.
77      */

78     public ProjectEdition getEdition() throws IvjException {
79         return null;
80     }
81
82     /**
83      * getName method comment.
84      */

85     public String JavaDoc getName() {
86         return null;
87     }
88
89     /**
90      * getOwnerName method comment.
91      */

92     public String JavaDoc getOwnerName() throws IvjException {
93         return null;
94     }
95
96     /**
97      * getPackages method comment.
98      */

99     public com.ibm.ivj.util.base.Package[] getPackages() throws IvjException {
100         return null;
101     }
102
103     /**
104      * getToolRepositoryData method comment.
105      */

106     public ToolData getToolRepositoryData(String JavaDoc arg1) throws java.io.IOException JavaDoc, java.io.StreamCorruptedException JavaDoc, IvjException, ClassNotFoundException JavaDoc, java.io.OptionalDataException JavaDoc {
107         return null;
108     }
109
110     /**
111      * getToolWorkspaceData method comment.
112      */

113     public ToolData getToolWorkspaceData(String JavaDoc arg1) throws java.io.IOException JavaDoc, java.io.StreamCorruptedException JavaDoc, IvjException, ClassNotFoundException JavaDoc, java.io.OptionalDataException JavaDoc {
114         return null;
115     }
116
117     /**
118      * getTypes method comment.
119      */

120     public com.ibm.ivj.util.base.Type[] getTypes() throws IvjException {
121         return null;
122     }
123
124     /**
125      * getVersionName method comment.
126      */

127     public String JavaDoc getVersionName() throws IvjException {
128         return null;
129     }
130
131     /**
132      * getVersionStamp method comment.
133      */

134     public java.util.Date JavaDoc getVersionStamp() throws IvjException {
135         return null;
136     }
137
138     /**
139      * isEdition method comment.
140      */

141     public boolean isEdition() throws IvjException {
142         return false;
143     }
144
145     /**
146      * isPackage method comment.
147      */

148     public boolean isPackage() {
149         return false;
150     }
151
152     /**
153      * isProject method comment.
154      */

155     public boolean isProject() {
156         return false;
157     }
158
159     /**
160      * isScratchEdition method comment.
161      */

162     public boolean isScratchEdition() throws IvjException {
163         return false;
164     }
165
166     /**
167      * isType method comment.
168      */

169     public boolean isType() {
170         return false;
171     }
172
173     /**
174      * isVersion method comment.
175      */

176     public boolean isVersion() throws IvjException {
177         return false;
178     }
179
180     /**
181      * openBrowser method comment.
182      */

183     public void openBrowser() throws IvjException {}
184
185     /**
186      * setComment method comment.
187      */

188     public void setComment(String JavaDoc arg1) throws IvjException {}
189
190     /**
191      * setToolRepositoryData method comment.
192      */

193     public void setToolRepositoryData(ToolData arg1) throws java.io.IOException JavaDoc, IvjException {}
194
195     /**
196      * setToolWorkspaceData method comment.
197      */

198     public void setToolWorkspaceData(ToolData arg1) throws java.io.IOException JavaDoc, IvjException {}
199
200     /**
201      * testToolRepositoryData method comment.
202      */

203     public boolean testToolRepositoryData(String JavaDoc arg1) throws IvjException {
204         return false;
205     }
206
207     /**
208      * testToolWorkspaceData method comment.
209      */

210     public boolean testToolWorkspaceData(String JavaDoc arg1) throws IvjException {
211         return false;
212     }
213
214     /**
215      * verify method comment.
216      */

217     public void verify() {}
218 }
219
Popular Tags