- Revision
- 1367
- Author
- rfscholte
- Date
- 2011-10-03 13:31:13 -0500 (Mon, 03 Oct 2011)
Log Message
Add JavaConstructor.getExceptionTypes() deprecate JavaClassParent interface for model interfaces
Modified Paths
Diff
Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaClassParent.java (1366 => 1367)
--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaClassParent.java 2011-10-02 21:53:13 UTC (rev 1366) +++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaClassParent.java 2011-10-03 18:31:13 UTC (rev 1367) @@ -20,7 +20,9 @@ * specific language governing permissions and limitations * under the License. */ - +/** + * @deprecated this interface will be hidden for the model interfaces + */ public interface JavaClassParent { /**
Modified: trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaConstructor.java (1366 => 1367)
--- trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaConstructor.java 2011-10-02 21:53:13 UTC (rev 1366) +++ trunk/qdox/src/main/java/com/thoughtworks/qdox/model/JavaConstructor.java 2011-10-03 18:31:13 UTC (rev 1367) @@ -61,7 +61,9 @@ * @return a list of Exceptions, never <code>null</code> */ List<JavaClass> getExceptions(); - + + List<JavaType> getExceptionTypes(); + /** * Equivalent of {@link java.lang.reflect.Constructor#isVarArgs()} *
To unsubscribe from this list please visit:
