User: jung    
  Date: 00/09/04 09:41:18

  Modified:    src/org/zoap/xml/meta/builtin FieldAttribute.java
  Log:
  public accessors to the associated reflection field allow
  extensions of this structure.
  
  Revision  Changes    Path
  1.2       +30 -33    zoap/src/org/zoap/xml/meta/builtin/FieldAttribute.java
  
  Index: FieldAttribute.java
  ===================================================================
  RCS file: 
/products/cvs/ejboss/zoap/src/org/zoap/xml/meta/builtin/FieldAttribute.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- FieldAttribute.java       2000/08/10 21:08:07     1.1
  +++ FieldAttribute.java       2000/09/04 16:41:18     1.2
  @@ -1,16 +1,24 @@
   /*
  - *   $Id: FieldAttribute.java,v 1.1 2000/08/10 21:08:07 jung Exp $
  - *   Copyright 2000 by infor: business solutions AG
  - *   Hauerstra�e 12, D-66299 Friedrichsthal, Germany
  - *   All rights reserved.
  - *
  - *   This software is the confidential and proprietary information
  - *   of infor: business solutions AG ("Confidential Information").  You
  - *   shall not disclose such Confidential Information and shall use
  - *   it only in accordance with the terms of the license agreement
  - *   you entered into with infor AG.
  + *   $Id: FieldAttribute.java,v 1.2 2000/09/04 16:41:18 jung Exp $
  + *   Copyright (c) 2000 infor:business solutions AG, Hauerstrasse 12, 
  + *   D-66299 Friedrichsthal, Germany. All Rights Reserved. 
  + * 
  + *   This program is free software; you can redistribute it and/or
  + *   modify it under the terms of the GNU General Public License
  + *   as published by the Free Software Foundation; either version 2
  + *   of the License, or (at your option) any later version.
  + *
  + *   This program is distributed in the hope that it will be useful,
  + *   but WITHOUT ANY WARRANTY; without even the implied warranty of
  + *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  + *   GNU General Public License for more details.
  + *
  + *   You should have received a copy of the GNU General Public License
  + *   along with this program; if not, write to the Free Software
  + *   Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
    */
   
  +
   package org.zoap.xml.meta.builtin;
   
   import org.zoap.xml.Environment;
  @@ -69,6 +77,15 @@
     public void setFieldName(String fieldName) {
       this.fieldName=fieldName;
     }
  +
  +    public void setAssociatedField(Field field) {
  +        associatedField = field;
  +    }
  +
  +    public Field getAssociatedField() {
  +        return associatedField;
  +    }
  +
   
     /**
      * accesses the field as an element. Lazily refreshes the internal reflection 
information
  @@ -160,29 +177,10 @@
   
   /*
    *   $Log: FieldAttribute.java,v $
  - *   Revision 1.1  2000/08/10 21:08:07  jung
  - *   Initial revision
  - *   
  - *   Revision 1.1.2.1  2000/08/04 17:20:20  jung
  - *   close to beta stadium. Meta-Data import now works.
  - *   
  - *   Revision 1.1.2.1  2000/07/17 12:46:19  jung
  - *   refactored package and meta-model
  - *
  - *   Revision 1.1.2.1  2000/07/13 12:46:25  jung
  - *   package renaming, most of the zoap stuff now under org.zoap
  - *   util and http stay infor.ce, containerInvoker etc move to org.jboss
  - *
  - *   changed the makefile, adopted most of the licenses
  - *
  - *   Revision 1.2  2000/07/06 16:55:06  jung
  - *   moved the default binding caches in order to make apartments
  - *   with different versions of the same class possible.
  - *
  - *   Revision 1.1.1.1  2000/07/06 14:11:29  jung
  - *   Import of a pre beta version of ZOAP source with a new directory structure,
  - *   ant-based make, apache-kind of license, etc.
  - *
  - *   jars are coming later because of cvs-history reasons.
  - *
  + *   Revision 1.2  2000/09/04 16:41:18  jung
  + *   public accessors to the associated reflection field allow
  + *   extensions of this structure.
  + *   
  + *   Revision 1.1.1.1  2000/08/10 21:08:07  jung
  + *   Initial import.
    */
  
  
  

Reply via email to