cvs commit: spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model FieldDescriptor.java
Peter Donald <[email protected]>
| Newsgroups | gmane.comp.java.spice.cvs |
|---|---|
| Message-ID | <[email protected]> |
donaldp 03/10/28 05:34:22
Modified: sandbox/metaclass/src/java/org/realityforge/metaclass/model
FieldDescriptor.java
Log:
Pushed delcaredAttributes through FieldDescriptor
Revision Changes Path
1.8 +4 -2 spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model/FieldDescriptor.java
Index: FieldDescriptor.java
===================================================================
RCS file: /cvsroot/spice/spice/sandbox/metaclass/src/java/org/realityforge/metaclass/model/FieldDescriptor.java,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- FieldDescriptor.java 28 Oct 2003 11:02:02 -0000 1.7
+++ FieldDescriptor.java 28 Oct 2003 13:34:22 -0000 1.8
@@ -24,7 +24,7 @@
*
* @author <a href="mailto:peter at realityforge.org">Peter Donald</a>
* @author <a href="mailto:doug at [email protected]">Doug Hagan</a>
- * @version $Revision: 1.7 $ $Date: 2003/10/28 11:02:02 $
+ * @version $Revision: 1.8 $ $Date: 2003/10/28 13:34:22 $
*/
public final class FieldDescriptor
extends FeatureDescriptor
@@ -50,13 +50,15 @@
*
* @param name the name of the field
* @param type the return type of the field
+ * @param declaredAttributes the declared attributes
* @param attributes any attributes associated with method
*/
public FieldDescriptor( final String name,
final String type,
+ 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/