1 package org.opencrx.kernel.account1.cci; 14 15 public interface Competitor 16 extends 17 org.opencrx.kernel.generic.cci.CrxObject { 18 28 public org.opencrx.kernel.account1.cci.Account getAccount( 29 int index 30 ); 31 32 40 public java.util.Collection getAccount( 41 ); 42 43 51 public void addAccount ( 52 int index, 53 org.opencrx.kernel.account1.cci.Account newValue 54 ); 55 56 63 public void addAccount ( 64 org.opencrx.kernel.account1.cci.Account newValue 65 ); 66 67 73 public void removeAccount ( 74 int index 75 ); 76 84 public short getCompetitorState( 85 ); 86 87 95 public void setCompetitorState( 96 short newValue 97 ); 98 99 109 public org.opencrx.kernel.account1.cci.Contact getContact( 110 int index 111 ); 112 113 121 public java.util.Collection getContact( 122 ); 123 124 132 public void addContact ( 133 int index, 134 org.opencrx.kernel.account1.cci.Contact newValue 135 ); 136 137 144 public void addContact ( 145 org.opencrx.kernel.account1.cci.Contact newValue 146 ); 147 148 154 public void removeContact ( 155 int index 156 ); 157 164 public String getDescription( 165 ); 166 167 171 172 177 public void setDescription( 178 String newValue 179 ); 180 181 188 public String getKeyProduct( 189 ); 190 191 195 196 201 public void setKeyProduct( 202 String newValue 203 ); 204 205 213 public String getName( 214 ); 215 216 224 public void setName( 225 String newValue 226 ); 227 228 235 public String getOpportunities( 236 ); 237 238 242 243 248 public void setOpportunities( 249 String newValue 250 ); 251 252 259 public String getStrengths( 260 ); 261 262 266 267 272 public void setStrengths( 273 String newValue 274 ); 275 276 283 public String getThreats( 284 ); 285 286 290 291 296 public void setThreats( 297 String newValue 298 ); 299 300 307 public String getWeaknesses( 308 ); 309 310 314 315 320 public void setWeaknesses( 321 String newValue 322 ); 323 324 331 public java.math.BigDecimal getWinPercentage( 332 ); 333 334 338 339 344 public void setWinPercentage( 345 java.math.BigDecimal newValue 346 ); 347 348 } 352 | Popular Tags |