svn commit: r13219 - branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java
| Newsgroups | gmane.comp.lang.uml.argouml.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: b00__1
Date: 2007-08-03 08:26:55-0700
New Revision: 13219
Modified:
branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java
Log:
Fix to throw the exceptions (not to return them)
Modified: branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java
Url: http://argouml.tigris.org/source/browse/argouml/branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java?view=diff&rev=13219&p1=branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java&p2=branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java&r1=13218&r2=13219
==============================================================================
--- branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java (original)
+++ branches/gsoc2007/b00__1/model-euml/src/org/argouml/model/euml/DataTypesFactoryEUMLImpl.java 2007-08-03 08:26:55-0700
@@ -92,23 +92,23 @@
// change in the way multiplicities work - tfm
public Object createMultiplicity(int lower, int upper) {
- return new NotImplementedException();
+ throw new NotImplementedException();
}
public Object createMultiplicity(List range) {
- return new NotImplementedException();
+ throw new NotImplementedException();
}
public Object createMultiplicity(String str) {
- return new NotImplementedException();
+ throw new NotImplementedException();
}
public Object createMultiplicityRange(String str) {
- return new NotImplementedException();
+ throw new NotImplementedException();
}
public Object createMultiplicityRange(int lower, int upper) {
- return new NotImplementedException();
+ throw new NotImplementedException();
}
public Object createObjectSetExpression(String language, String body) {