You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by pb...@apache.org on 2002/05/07 17:05:46 UTC

cvs commit: xml-fop/src/org/apache/fop/configuration FontInfo.java

pbwest      02/05/07 08:05:46

  Modified:    src/org/apache/fop/configuration Tag: FOP_0-20-0_Alt-Design
                        FontInfo.java
  Log:
  Vector -> ArrayList
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.2.4.1   +5 -5      xml-fop/src/org/apache/fop/configuration/FontInfo.java
  
  Index: FontInfo.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/org/apache/fop/configuration/FontInfo.java,v
  retrieving revision 1.2
  retrieving revision 1.2.4.1
  diff -u -r1.2 -r1.2.4.1
  --- FontInfo.java	30 Jul 2001 20:29:19 -0000	1.2
  +++ FontInfo.java	7 May 2002 15:05:46 -0000	1.2.4.1
  @@ -1,5 +1,5 @@
   /*
  - * $Id: FontInfo.java,v 1.2 2001/07/30 20:29:19 tore Exp $
  + * $Id: FontInfo.java,v 1.2.4.1 2002/05/07 15:05:46 pbwest Exp $
    * Copyright (C) 2001 The Apache Software Foundation. All rights reserved.
    * For details on use and redistribution please refer to the
    * LICENSE file included with these sources.
  @@ -8,7 +8,7 @@
   
   package org.apache.fop.configuration;
   
  -import java.util.Vector;
  +import java.util.ArrayList;
   
   /**
    * FontInfo contains meta information on fonts (where is the metrics file etc.)
  @@ -17,10 +17,10 @@
   public class FontInfo {
       private String metricsFile, embedFile, name;
       private boolean kerning;
  -    private Vector fontTriplets;
  +    private ArrayList fontTriplets;
   
       public FontInfo(String name, String metricsFile, boolean kerning,
  -                    Vector fontTriplets, String embedFile) {
  +                    ArrayList fontTriplets, String embedFile) {
           this.name = name;
           this.metricsFile = metricsFile;
           this.embedFile = embedFile;
  @@ -40,7 +40,7 @@
           return kerning;
       }
   
  -    public Vector getFontTriplets() {
  +    public ArrayList getFontTriplets() {
           return fontTriplets;
       }
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: fop-cvs-help@xml.apache.org