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

Norman Richards norman.richards at jboss.com
Mon Feb 19 23:14:20 EST 2007


  User: nrichards
  Date: 07/02/19 23:14:20

  Modified:    src/pdf/org/jboss/seam/pdf/ui         UICell.java
                        UIDocument.java UIFont.java UIImage.java
                        UIList.java UIListItem.java UIParagraph.java
                        UITable.java
  Log:
  overrides and a few other warnings
  
  Revision  Changes    Path
  1.11      +2 -1      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UICell.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UICell.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UICell.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- UICell.java	20 Feb 2007 04:06:09 -0000	1.10
  +++ UICell.java	20 Feb 2007 04:14:20 -0000	1.11
  @@ -277,6 +277,7 @@
   		return null;
   	}
   
  +	@Override
   	public void handleAdd(Object o) {
   		if (o instanceof Phrase) {
   		    cell.setPhrase((Phrase) o);
  
  
  
  1.18      +0 -1      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIDocument.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIDocument.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIDocument.java,v
  retrieving revision 1.17
  retrieving revision 1.18
  diff -u -b -r1.17 -r1.18
  --- UIDocument.java	20 Feb 2007 04:06:09 -0000	1.17
  +++ UIDocument.java	20 Feb 2007 04:14:20 -0000	1.18
  @@ -6,7 +6,6 @@
   import org.jboss.seam.pdf.DocumentStore;
   import org.jboss.seam.pdf.DocumentData.DocType;
   
  -import javax.faces.FacesException;
   import javax.faces.component.UIComponent;
   import javax.faces.component.ValueHolder;
   import javax.faces.context.*;
  
  
  
  1.7       +1 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIFont.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIFont.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIFont.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- UIFont.java	20 Feb 2007 04:06:09 -0000	1.6
  +++ UIFont.java	20 Feb 2007 04:14:20 -0000	1.7
  @@ -56,6 +56,7 @@
           }
       }
   
  +    @Override
       public void handleAdd(Object o) {
           addToITextParent(o);
       }
  
  
  
  1.13      +1 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIImage.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIImage.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIImage.java,v
  retrieving revision 1.12
  retrieving revision 1.13
  diff -u -b -r1.12 -r1.13
  --- UIImage.java	20 Feb 2007 04:06:09 -0000	1.12
  +++ UIImage.java	20 Feb 2007 04:14:20 -0000	1.13
  @@ -239,6 +239,7 @@
           }
       }
   
  +    @Override
       public void handleAdd(Object o) {
           throw new RuntimeException("can't add " + o.getClass().getName() + " to image");
       }
  
  
  
  1.11      +1 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIList.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIList.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIList.java,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -b -r1.10 -r1.11
  --- UIList.java	20 Feb 2007 04:06:09 -0000	1.10
  +++ UIList.java	20 Feb 2007 04:14:20 -0000	1.11
  @@ -104,6 +104,7 @@
           }
       }
   
  +    @Override
       public void handleAdd(Object o) {
           list.add(o);
       }
  
  
  
  1.9       +2 -1      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIListItem.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIListItem.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIListItem.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- UIListItem.java	20 Feb 2007 04:06:09 -0000	1.8
  +++ UIListItem.java	20 Feb 2007 04:14:20 -0000	1.9
  @@ -71,10 +71,11 @@
           }
       }
   
  +    @Override
       public void removeITextObject() {
           listItem = null;
       }
  -
  +    @Override
       public void handleAdd(Object o) {
           listItem.add(o);
       }
  
  
  
  1.9       +1 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIParagraph.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UIParagraph.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UIParagraph.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -b -r1.8 -r1.9
  --- UIParagraph.java	20 Feb 2007 04:06:09 -0000	1.8
  +++ UIParagraph.java	20 Feb 2007 04:14:20 -0000	1.9
  @@ -124,6 +124,7 @@
           }
       }
   
  +    @Override
       public void handleAdd(Object o) {
           paragraph.add(o);
       }
  
  
  
  1.10      +1 -0      jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UITable.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: UITable.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/pdf/org/jboss/seam/pdf/ui/UITable.java,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -b -r1.9 -r1.10
  --- UITable.java	20 Feb 2007 04:06:09 -0000	1.9
  +++ UITable.java	20 Feb 2007 04:14:20 -0000	1.10
  @@ -191,6 +191,7 @@
           }
       }
       
  +    @Override
       public void handleAdd(Object o) {
           if (o instanceof PdfPCell) {
               table.addCell((PdfPCell) o);
  
  
  



More information about the jboss-cvs-commits mailing list