cvs commit: xml-fop/src/java/org/apache/fop/fo PropertySets.java

2004-02-09 Thread bckfnn
bckfnn  2004/02/09 13:30:56

  Modified:src/codegen property-sets.xsl
   src/java/org/apache/fop/fo PropertySets.java
  Log:
  Simplefy the huge merge loop and allow compilation with jdk1.3.
  
  Revision  ChangesPath
  1.2   +194 -108  xml-fop/src/codegen/property-sets.xsl
  
  
http://cvs.apache.org/viewcvs/xml-fop/src/codegen/property-sets.xsl.diff?r1=1.1r2=1.2
  
  
  1.4   +945 -1136 xml-fop/src/java/org/apache/fop/fo/PropertySets.java
  
  
http://cvs.apache.org/viewcvs/xml-fop/src/java/org/apache/fop/fo/PropertySets.java.diff?r1=1.3r2=1.4
  
  

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



cvs commit: xml-fop/src/java/org/apache/fop/fo PropertySets.java FObj.java Property.java PropertyList.java PropertyManager.java

2003-12-22 Thread gmazza
gmazza  2003/12/22 15:23:06

  Modified:.build.xml
   src/java/org/apache/fop/fo FObj.java Property.java
PropertyList.java PropertyManager.java
  Added:   src/codegen property-sets.xsl
   src/java/org/apache/fop/fo PropertySets.java
  Log:
  Initial Check-in of PropertySets.java and .xsl.  (Similar to Alt-Design's
  PropertySets, however uses integer arrays to identify those properties
  relevant for an FO.)
  
  Revision  ChangesPath
  1.96  +2 -0  xml-fop/build.xml
  
  Index: build.xml
  ===
  RCS file: /home/cvs/xml-fop/build.xml,v
  retrieving revision 1.95
  retrieving revision 1.96
  diff -u -r1.95 -r1.96
  --- build.xml 22 Dec 2003 21:37:43 -  1.95
  +++ build.xml 22 Dec 2003 23:23:05 -  1.96
  @@ -920,6 +920,8 @@
 target name=xsltToJava 
   style in=src\codegen\constants.xml style=src\codegen\constants.xsl
   out=Constants.java/
  +style in=src/codegen/foelements.xml style=src/codegen/property-sets.xsl
  +out=PropertySets.java/
 /target
   
 !-- === --
  
  
  
  1.1  xml-fop/src/codegen/property-sets.xsl
  
  Index: property-sets.xsl
  ===
  !-- $Id: property-sets.xsl,v 1.1 2003/12/22 23:23:05 gmazza Exp $
  
 The Apache Software License, Version 1.1
  
  
  Copyright (C) 1999-2003 The Apache Software Foundation. All rights reserved.
  
  Redistribution and use in source and binary forms, with or without modifica-
  tion, are permitted provided that the following conditions are met:
  
  1. Redistributions of source code must retain the above copyright notice,
 this list of conditions and the following disclaimer.
  
  2. Redistributions in binary form must reproduce the above copyright notice,
 this list of conditions and the following disclaimer in the documentation
 and/or other materials provided with the distribution.
  
  3. The end-user documentation included with the redistribution, if any, must
 include the following acknowledgment: This product includes software
 developed by the Apache Software Foundation (http://www.apache.org/).
 Alternately, this acknowledgment may appear in the software itself, if
 and wherever such third-party acknowledgments normally appear.
  
  4. The names FOP and Apache Software Foundation must not be used to
 endorse or promote products derived from this software without prior
 written permission. For written permission, please contact
 [EMAIL PROTECTED]
  
  5. Products derived from this software may not be called Apache, nor may
 Apache appear in their name, without prior written permission of the
 Apache Software Foundation.
  
  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
  INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
  FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
  APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
  INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
  DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  
  
  This software consists of voluntary contributions made by many individuals
  on behalf of the Apache Software Foundation and was originally created by
  James Tauber [EMAIL PROTECTED]. For more information on the Apache
  Software Foundation, please see http://www.apache.org/.
  -- 
  xsl:stylesheet version=1.0
  xmlns:xsl=http://www.w3.org/1999/XSL/Transform;
  xsl:output method=text /
  
  xsl:include href=propinc.xsl/
  
  xsl:template match=root
xsl:text
  package org.apache.fop.fo;
  import java.util.BitSet;
  
  public class PropertySets {
  public static short[][] mapping = null;
  
  public static void initialize() {
  mapping = new short[Constants.ELEMENT_COUNT][];
  /xsl:text
xsl:apply-templates/
  xsl:text
  boolean loop = true;
  while (loop) {
  loop = false;
  /xsl:text
  xsl:apply-templates mode=content/
 }
  xsl:apply-templates mode=mapping/
xsl:text
  }
  
  private static short[] makeSparseIndices(BitSet set) {
  short[] indices = new