You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by sa...@apache.org on 2003/11/10 12:48:55 UTC

cvs commit: jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes CHPBinTable.java

sackley     2003/11/10 03:48:55

  Modified:    src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes
                        CHPBinTable.java
  Log:
  latest changes...still not working though!
  
  Revision  Changes    Path
  1.5       +17 -2     jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/CHPBinTable.java
  
  Index: CHPBinTable.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/scratchpad/src/org/apache/poi/hwpf/model/hdftypes/CHPBinTable.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- CHPBinTable.java	15 Jul 2003 03:22:53 -0000	1.4
  +++ CHPBinTable.java	10 Nov 2003 11:48:55 -0000	1.5
  @@ -56,6 +56,7 @@
   
   package org.apache.poi.hwpf.model.hdftypes;
   
  +import java.util.List;
   import java.util.ArrayList;
   import java.io.OutputStream;
   import java.io.IOException;
  @@ -64,11 +65,25 @@
   import org.apache.poi.util.LittleEndian;
   import org.apache.poi.hwpf.model.io.*;
   
  -
  +/**
  + * This class holds all of the character formatting properties.
  + *
  + * @author Ryan Ackley
  + */
   public class CHPBinTable
   {
  +  /** List of character properties.*/
     ArrayList _textRuns = new ArrayList();
   
  +  /**
  +   * Constructor used to read a binTable in from a Word document.
  +   *
  +   * @param documentStream
  +   * @param tableStream
  +   * @param offset
  +   * @param size
  +   * @param fcMin
  +   */
     public CHPBinTable(byte[] documentStream, byte[] tableStream, int offset,
                        int size, int fcMin)
     {
  @@ -94,7 +109,7 @@
       }
     }
   
  -  public ArrayList getTextRuns()
  +  public List getTextRuns()
     {
       return _textRuns;
     }
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: poi-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: poi-dev-help@jakarta.apache.org