pbwest      2004/01/03 03:14:46

  Modified:    src/java/org/apache/fop/fo/properties Tag:
                        FOP_0-20-0_Alt-Design Property.java
  Log:
  Added getters for initialValueTypes, inherited, dataTypes  and
  traitMapping, so that these methods can be overridden in
  subclasses of Property.
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.3   +22 -3     
xml-fop/src/java/org/apache/fop/fo/properties/Attic/Property.java
  
  Index: Property.java
  ===================================================================
  RCS file: 
/home/cvs/xml-fop/src/java/org/apache/fop/fo/properties/Attic/Property.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- Property.java     21 Dec 2003 01:38:52 -0000      1.1.2.2
  +++ Property.java     3 Jan 2004 11:14:46 -0000       1.1.2.3
  @@ -252,8 +252,27 @@
                                 ;
   
       public static final int dataTypes = NOTYPE;
  +
  +    public int getDataTypes() {
  +        return dataTypes;
  +    }
       public static final int initialValueType = NOTYPE_IT;
  +
  +    public int getInitialValueType() {
  +        return initialValueType;
  +    }
  +    
       public static final int inherited = NO;
  +
  +    public int getInherited() {
  +        return inherited;
  +    }
  +    
  +    private static final int traitMapping = NO_TRAIT;
  +    
  +    public int getTraitMapping() {
  +        return traitMapping;
  +    }
   
       public static Map enumHash = null;
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to