cvs commit: spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model MethodDescriptor.java
Peter Donald <[email protected]>
| Newsgroups | gmane.comp.java.spice.cvs |
|---|---|
| Message-ID | <[email protected]> |
donaldp 03/10/28 05:40:52
Modified: sandbox/metaclass/src/java/org/realityforge/metaclass/model
MethodDescriptor.java
Log:
Push through declared attributes in MethodDescriptor
Revision Changes Path
1.9 +4 -2 spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model/MethodDescriptor.java
Index: MethodDescriptor.java
===================================================================
RCS file: /cvsroot/spice/spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model/MethodDescriptor.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- MethodDescriptor.java 28 Oct 2003 11:02:01 -0000 1.8
+++ MethodDescriptor.java 28 Oct 2003 13:40:52 -0000 1.9
@@ -24,7 +24,7 @@
* about method.</p>
*
* @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
- * @version $Revision: 1.8 $ $Date: 2003/10/28 11:02:01 $
+ * @version $Revision: 1.9 $ $Date: 2003/10/28 13:40:52 $
*/
public final class MethodDescriptor
extends FeatureDescriptor
@@ -56,14 +56,16 @@
* @param name the name of the method
* @param returnType the return type of the method
* @param parameters the parameters of the method
+ * @param declaredAttributes the declared attributes
* @param attributes any attributes associated with method
*/
public MethodDescriptor( final String name,
final String returnType,
final ParameterDescriptor[] parameters,
+ final Attribute[] declaredAttributes,
final Attribute[] attributes )
{
- super( attributes, attributes );
+ super( declaredAttributes, attributes );
if( null == name )
{
throw new NullPointerException( "name" );
-------------------------------------------------------
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/