You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by cj...@apache.org on 2001/03/21 16:03:34 UTC

cvs commit: xml-batik/sources/org/apache/batik/gvt ImageNode.java ShapeNode.java TextNode.java

cjolif      01/03/21 07:03:32

  Modified:    sources/org/apache/batik/gvt ImageNode.java ShapeNode.java
                        TextNode.java
  Log:
  GraphicsNode.paint() method no longer throws an InterruptedException =>
  remove it from the doc (otherwise javadoc complaints).
  
  Revision  Changes    Path
  1.6       +1 -3      xml-batik/sources/org/apache/batik/gvt/ImageNode.java
  
  Index: ImageNode.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/ImageNode.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- ImageNode.java	2001/03/05 22:06:59	1.5
  +++ ImageNode.java	2001/03/21 15:03:23	1.6
  @@ -18,7 +18,7 @@
    * A graphics node that represents an image described as a graphics node.
    *
    * @author <a href="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
  - * @version $Id: ImageNode.java,v 1.5 2001/03/05 22:06:59 vhardy Exp $
  + * @version $Id: ImageNode.java,v 1.6 2001/03/21 15:03:23 cjolif Exp $
    */
   public class ImageNode extends CompositeGraphicsNode {
   
  @@ -32,8 +32,6 @@
        *
        * @param g2d the Graphics2D to use
        * @param rc the GraphicsNodeRenderContext to use
  -     * @exception InterruptedException thrown if the current thread
  -     * was interrupted during paint
        */
       public void paint(Graphics2D g2d, GraphicsNodeRenderContext rc) {
           if (isVisible) {
  
  
  
  1.8       +1 -3      xml-batik/sources/org/apache/batik/gvt/ShapeNode.java
  
  Index: ShapeNode.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/ShapeNode.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ShapeNode.java	2001/03/18 18:18:18	1.7
  +++ ShapeNode.java	2001/03/21 15:03:25	1.8
  @@ -20,7 +20,7 @@
    * A graphics node that represents a shape.
    *
    * @author <a href="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
  - * @version $Id: ShapeNode.java,v 1.7 2001/03/18 18:18:18 vhardy Exp $
  + * @version $Id: ShapeNode.java,v 1.8 2001/03/21 15:03:25 cjolif Exp $
    */
   public class ShapeNode extends AbstractGraphicsNode {
   
  @@ -109,8 +109,6 @@
        *
        * @param g2d the Graphics2D to use
        * @param rc the GraphicsNodeRenderContext to use
  -     * @exception InterruptedException thrown if the current thread
  -     * was interrupted during paint
        */
       public void paint(Graphics2D g2d, GraphicsNodeRenderContext rc) {
           if (isVisible) {
  
  
  
  1.7       +1 -3      xml-batik/sources/org/apache/batik/gvt/TextNode.java
  
  Index: TextNode.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/TextNode.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -r1.6 -r1.7
  --- TextNode.java	2001/03/05 22:06:56	1.6
  +++ TextNode.java	2001/03/21 15:03:26	1.7
  @@ -25,7 +25,7 @@
    * A graphics node that represents text.
    *
    * @author <a href="mailto:Thierry.Kormann@sophia.inria.fr">Thierry Kormann</a>
  - * @version $Id: TextNode.java,v 1.6 2001/03/05 22:06:56 vhardy Exp $
  + * @version $Id: TextNode.java,v 1.7 2001/03/21 15:03:26 cjolif Exp $
    */
   public class TextNode extends AbstractGraphicsNode implements Selectable {
   
  @@ -256,8 +256,6 @@
        *
        * @param g2d the Graphics2D to use
        * @param rc the GraphicsNodeRenderContext to use
  -     * @exception InterruptedException thrown if the current thread
  -     * was interrupted during paint
        */
       public void paint(Graphics2D g2d, GraphicsNodeRenderContext rc) {
           if (isVisible) {
  
  
  

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