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 11 public MockProject() { 12 super(); 13 } 14 15 18 public void clearToolRepositoryData(String arg1) throws IvjException {} 19 20 23 public void clearToolWorkspaceData(String arg1) throws IvjException {} 24 25 28 public com.ibm.ivj.util.base.Package createDefaultPackage(boolean arg1) throws IvjException { 29 return null; 30 } 31 32 35 public void createNewEdition() throws IvjException {} 36 37 40 public com.ibm.ivj.util.base.Package createPackage(String arg1, boolean arg2) throws IvjException { 41 return null; 42 } 43 44 47 public void createVersion(String arg1) throws IvjException {} 48 49 52 public void delete() throws IvjException {} 53 54 57 public com.ibm.ivj.util.base.ProjectEdition[] getAllEditions() throws IvjException { 58 return null; 59 } 60 61 64 public String getComment() throws IvjException { 65 return null; 66 } 67 68 71 public com.ibm.ivj.util.base.Package getDefaultPackage() throws IvjException { 72 return null; 73 } 74 75 78 public ProjectEdition getEdition() throws IvjException { 79 return null; 80 } 81 82 85 public String getName() { 86 return null; 87 } 88 89 92 public String getOwnerName() throws IvjException { 93 return null; 94 } 95 96 99 public com.ibm.ivj.util.base.Package[] getPackages() throws IvjException { 100 return null; 101 } 102 103 106 public ToolData getToolRepositoryData(String arg1) throws java.io.IOException , java.io.StreamCorruptedException , IvjException, ClassNotFoundException , java.io.OptionalDataException { 107 return null; 108 } 109 110 113 public ToolData getToolWorkspaceData(String arg1) throws java.io.IOException , java.io.StreamCorruptedException , IvjException, ClassNotFoundException , java.io.OptionalDataException { 114 return null; 115 } 116 117 120 public com.ibm.ivj.util.base.Type[] getTypes() throws IvjException { 121 return null; 122 } 123 124 127 public String getVersionName() throws IvjException { 128 return null; 129 } 130 131 134 public java.util.Date getVersionStamp() throws IvjException { 135 return null; 136 } 137 138 141 public boolean isEdition() throws IvjException { 142 return false; 143 } 144 145 148 public boolean isPackage() { 149 return false; 150 } 151 152 155 public boolean isProject() { 156 return false; 157 } 158 159 162 public boolean isScratchEdition() throws IvjException { 163 return false; 164 } 165 166 169 public boolean isType() { 170 return false; 171 } 172 173 176 public boolean isVersion() throws IvjException { 177 return false; 178 } 179 180 183 public void openBrowser() throws IvjException {} 184 185 188 public void setComment(String arg1) throws IvjException {} 189 190 193 public void setToolRepositoryData(ToolData arg1) throws java.io.IOException , IvjException {} 194 195 198 public void setToolWorkspaceData(ToolData arg1) throws java.io.IOException , IvjException {} 199 200 203 public boolean testToolRepositoryData(String arg1) throws IvjException { 204 return false; 205 } 206 207 210 public boolean testToolWorkspaceData(String arg1) throws IvjException { 211 return false; 212 } 213 214 217 public void verify() {} 218 } 219 | Popular Tags |