cvs commit: spice/sandbox/metaclass/src/test/org/realityforge/metaclass AttributesTestCase.java
Peter Donald <[email protected]>
| Newsgroups | gmane.comp.java.spice.cvs |
|---|---|
| Message-ID | <[email protected]> |
donaldp 03/10/28 05:40:53
Modified: sandbox/metaclass/src/test/org/realityforge/metaclass
AttributesTestCase.java
Log:
Push through declared attributes in MethodDescriptor
Revision Changes Path
1.18 +12 -11 spice/sandbox/metaclass/src/test/org/realityforge/metaclass/AttributesTestCase.java
Index: AttributesTestCase.java
===================================================================
RCS file: /cvsroot/spice/spice/sandbox/metaclass/src/test/org/realityforge/metaclass/AttributesTestCase.java,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- AttributesTestCase.java 28 Oct 2003 13:34:22 -0000 1.17
+++ AttributesTestCase.java 28 Oct 2003 13:40:53 -0000 1.18
@@ -22,7 +22,7 @@
/**
*
* @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
- * @version $Revision: 1.17 $ $Date: 2003/10/28 13:34:22 $
+ * @version $Revision: 1.18 $ $Date: 2003/10/28 13:40:53 $
*/
public class AttributesTestCase
extends TestCase
@@ -359,6 +359,7 @@
new MethodDescriptor( method.getName(),
method.getReturnType().getName(),
parameters,
+ attributes,
attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
@@ -402,7 +403,7 @@
new MethodDescriptor( method.getName(),
method.getReturnType().getName(),
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -445,7 +446,7 @@
new MethodDescriptor( method.getName(),
method.getReturnType().getName(),
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -493,7 +494,7 @@
new MethodDescriptor( "ignoreMe",
"",
ParameterDescriptor.EMPTY_SET,
- Attribute.EMPTY_SET );
+ Attribute.EMPTY_SET, Attribute.EMPTY_SET );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -521,7 +522,7 @@
new MethodDescriptor( "ignoreMe",
"",
ParameterDescriptor.EMPTY_SET,
- Attribute.EMPTY_SET );
+ Attribute.EMPTY_SET, Attribute.EMPTY_SET );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -571,7 +572,7 @@
new MethodDescriptor( getConstructorName( constructor ),
"",
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -618,7 +619,7 @@
new MethodDescriptor( getConstructorName( constructor ),
"",
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -663,7 +664,7 @@
new MethodDescriptor( getConstructorName( constructor ),
"",
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -705,7 +706,7 @@
new MethodDescriptor( getConstructorName( constructor ),
"",
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -735,7 +736,7 @@
new MethodDescriptor( method.getName(),
"",
parameters,
- attributes );
+ attributes, attributes );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
@@ -758,7 +759,7 @@
new MethodDescriptor( constructor.getName(),
"",
ParameterDescriptor.EMPTY_SET,
- Attribute.EMPTY_SET );
+ Attribute.EMPTY_SET, Attribute.EMPTY_SET );
final ClassDescriptor descriptor =
new ClassDescriptor( AttributesTestCase.class.getName(),
Attribute.EMPTY_SET, Attribute.EMPTY_SET,
-------------------------------------------------------
This SF.net email is sponsored by: The SF.net Donation Program.
Do you like what SourceForge.net is doing for the Open
Source Community? Make a contribution, and help us add new
features and functionality. Click here: http://sourceforge.net/donate/