cvs commit: xml-fop/src/org/apache/fop/datatypes/indirect FromNearestSpecified.java FromParent.java IndirectValue.java InheritedValue.java Inherit.java

2002-10-19 Thread pbwest
pbwest  2002/10/18 20:28:52

  Modified:src/org/apache/fop/datatypes/indirect Tag:
FOP_0-20-0_Alt-Design FromNearestSpecified.java
FromParent.java IndirectValue.java
InheritedValue.java Inherit.java
  Log:
  PropertyConsts now instantiated.
  PropertyConsts data is accessed through a singleton object.
  getPropertyIndex() moved to PropNames.
  Properties split into properties.Property and properties.property.
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.4   +5 -5  
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromNearestSpecified.java
  
  Index: FromNearestSpecified.java
  ===
  RCS file: 
/home/cvs/xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromNearestSpecified.java,v
  retrieving revision 1.1.2.3
  retrieving revision 1.1.2.4
  diff -u -r1.1.2.3 -r1.1.2.4
  --- FromNearestSpecified.java 3 Oct 2002 12:10:17 -   1.1.2.3
  +++ FromNearestSpecified.java 19 Oct 2002 03:28:52 -  1.1.2.4
  @@ -3,7 +3,7 @@
   import org.apache.fop.datatypes.indirect.IndirectValue;
   import org.apache.fop.datatypes.PropertyValue;
   import org.apache.fop.fo.expr.PropertyException;
  -import org.apache.fop.fo.Properties;
  +import org.apache.fop.fo.properties.Property;
   import org.apache.fop.fo.FONode;
   
   /*
  @@ -100,7 +100,7 @@
* property.
*/
   public void validate() throws PropertyException {
  -super.validate(Properties.SHORTHAND);
  +super.validate(Property.SHORTHAND);
   }
   
   }
  
  
  
  1.1.2.3   +5 -5  
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromParent.java
  
  Index: FromParent.java
  ===
  RCS file: 
/home/cvs/xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromParent.java,v
  retrieving revision 1.1.2.2
  retrieving revision 1.1.2.3
  diff -u -r1.1.2.2 -r1.1.2.3
  --- FromParent.java   18 Sep 2002 15:31:14 -  1.1.2.2
  +++ FromParent.java   19 Oct 2002 03:28:52 -  1.1.2.3
  @@ -3,7 +3,7 @@
   import org.apache.fop.datatypes.indirect.IndirectValue;
   import org.apache.fop.datatypes.PropertyValue;
   import org.apache.fop.fo.expr.PropertyException;
  -import org.apache.fop.fo.Properties;
  +import org.apache.fop.fo.properties.Property;
   
   /*
* $Id$
  @@ -79,7 +79,7 @@
* validate the iFromParent/i against the associated property.
*/
   public void validate() throws PropertyException {
  -super.validate(Properties.SHORTHAND);
  +super.validate(Property.SHORTHAND);
   }
   
   }
  
  
  
  1.1.2.5   +6 -6  
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/IndirectValue.java
  
  Index: IndirectValue.java
  ===
  RCS file: 
/home/cvs/xml-fop/src/org/apache/fop/datatypes/indirect/Attic/IndirectValue.java,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- IndirectValue.java5 Oct 2002 02:40:31 -   1.1.2.4
  +++ IndirectValue.java19 Oct 2002 03:28:52 -  1.1.2.5
  @@ -4,8 +4,8 @@
   import org.apache.fop.datatypes.AbstractPropertyValue;
   import org.apache.fop.datatypes.PropertyValue;
   import org.apache.fop.datatypes.Numeric;
  -import org.apache.fop.fo.Properties;
  -import org.apache.fop.fo.PropertyConsts;
  +import org.apache.fop.fo.properties.Property;
  +import org.apache.fop.fo.PropNames;
   import org.apache.fop.fo.FONode;
   
   /*
  @@ -92,7 +92,7 @@
   throws PropertyException
   {
   super(propertyName, type);
  -sourceProperty = PropertyConsts.getPropertyIndex(sourcePropertyName);
  +sourceProperty = PropNames.getPropertyIndex(sourcePropertyName);
   }
   
   /**
  
  
  
  1.1.2.5   +9 -9  
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/InheritedValue.java
  
  Index: InheritedValue.java
  ===
  RCS file: 
/home/cvs/xml-fop/src/org/apache/fop/datatypes/indirect/Attic/InheritedValue.java,v
  retrieving revision 1.1.2.4
  retrieving revision 1.1.2.5
  diff -u -r1.1.2.4 -r1.1.2.5
  --- InheritedValue.java   5 Oct 2002 02:42:21 -   1.1.2.4
  +++ InheritedValue.java   19 Oct 2002 03:28:52 -  1.1.2.5
  @@ -2,7 +2,7 @@
   
   import org.apache.fop.fo.expr.PropertyException;
   import org.apache.fop.datatypes.PropertyValue;
  -import org.apache.fop.fo.Properties;
  +import org.apache.fop.fo.properties.Property;
   import org.apache.fop.fo.PropNames;
   import org.apache.fop.fo.PropertyConsts;
   import org.apache.fop.datatypes.indirect.IndirectValue;
  @@ -50,7 +50,7 @@
   throws PropertyException
   {
   super(property, PropertyValue.INHERIT, sourceProperty);
  -

cvs commit: xml-fop/src/org/apache/fop/datatypes/indirect FromNearestSpecified.java FromParent.java IndirectValue.java InheritedValue.java Inherit.java

2002-09-18 Thread pbwest

pbwest  2002/09/18 07:21:07

  Added:   src/org/apache/fop/datatypes/indirect Tag:
FOP_0-20-0_Alt-Design FromNearestSpecified.java
FromParent.java IndirectValue.java
InheritedValue.java Inherit.java
  Log:
  Moved from org.apache.fop.datatypes
  
  Revision  ChangesPath
  No   revision
  
  
  No   revision
  
  
  1.1.2.1   +106 -0
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromNearestSpecified.java
  
  
  
  
  1.1.2.1   +85 -0 
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/FromParent.java
  
  
  
  
  1.1.2.1   +190 -0
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/IndirectValue.java
  
  
  
  
  1.1.2.1   +120 -0
xml-fop/src/org/apache/fop/datatypes/indirect/Attic/InheritedValue.java
  
  
  
  
  1.1.2.1   +92 -0 xml-fop/src/org/apache/fop/datatypes/indirect/Attic/Inherit.java
  
  
  
  

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