[jboss-cvs] jboss-seam/src/pdf/org/jboss/seam/pdf ...

Norman Richards norman.richards at jboss.com
Sun Dec 31 19:27:48 EST 2006


  User: nrichards
  Date: 06/12/31 19:27:48

  Modified:    src/pdf/org/jboss/seam/pdf  ITextUtils.java
  Log:
  add basic facet support, use for default cell style
  
  Revision  Changes    Path
  1.4       +3 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ITextUtils.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: ITextUtils.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ITextUtils.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -b -r1.3 -r1.4
  --- ITextUtils.java	31 Dec 2006 06:50:05 -0000	1.3
  +++ ITextUtils.java	1 Jan 2007 00:27:48 -0000	1.4
  @@ -34,6 +34,9 @@
           if (ElementTags.ALIGN_CENTER.equalsIgnoreCase(alignment)) {
               return Element.ALIGN_CENTER;
           }
  +        if (ElementTags.ALIGN_LEFT.equalsIgnoreCase(alignment)) {
  +            return Element.ALIGN_LEFT;
  +        }
           if (ElementTags.ALIGN_RIGHT.equalsIgnoreCase(alignment)) {
               return Element.ALIGN_RIGHT;
           }
  
  
  



More information about the jboss-cvs-commits mailing list