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 tk...@apache.org on 2001/01/29 14:46:22 UTC

cvs commit: xml-batik/sources/org/apache/batik/gvt/event SelectionListener.java

tkormann    01/01/29 05:46:22

  Modified:    sources/org/apache/batik/gvt/event SelectionListener.java
  Added:       sources/org/apache/batik/css/parser package.html
               sources/org/apache/batik/dom/traversal package.html
               sources/org/apache/batik/ext/awt package.html
               sources/org/apache/batik/ext/awt/font package.html
               sources/org/apache/batik/ext/awt/geom package.html
               sources/org/apache/batik/ext/awt/image package.html
               sources/org/apache/batik/ext/awt/image/codec package.html
  Log:
  improve javadoc
  
  Revision  Changes    Path
  1.1                  xml-batik/sources/org/apache/batik/css/parser/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.css.parser</title>
    </head>
  
    <body>
  Provides a CSS parser conformed to the <a href="http://www.w3.org/Style/CSS/SAC/">SAC</a> API.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/dom/traversal/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
          "http://www.w3.org/TR/REC-html40/loose.dtd">
  <html>
    <body bgcolor="#FFFFFF">
      Provides an implementation of the DOM level 2 traversal module.
      <p>
      It is composed of utility classes independant from a given
      DOM core implementation.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/ext/awt/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.ext.awt</title>
    </head>
  
    <body>
  Contains extensions to the <tt>java.awt</tt> package. This package
  provides some new <tt>Paint</tt>s such as a linear or radial
  gradients.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/ext/awt/font/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.ext.awt.font</title>
    </head>
  
    <body>
  Contains extensions to the <tt>java.awt.font</tt> package. This
  package provides new <tt>TextLayout</tt> algorithm and a comprehensive
  way to handle SVG text attributes such stroked text or multiple font families.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/ext/awt/geom/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.ext.awt.geom</title>
    </head>
  
    <body>
  Contains extensions to the <tt>java.awt.geom</tt> package. This
  package provides new <tt>Shape</tt>s and some utility methods to
  manage geometric objects.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/ext/awt/image/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.ext.awt.image</title>
    </head>
  
    <body>
  Contains extensions to the <tt>java.awt.image</tt> package. This
  package provides convenient methods and some utility classes. These
  generally bypass broken methods in Java2D or provide tweaked
  implementations.
    </body>
  </html>
  
  
  
  1.1                  xml-batik/sources/org/apache/batik/ext/awt/image/codec/package.html
  
  Index: package.html
  ===================================================================
  <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
  <html>
    <head>
      <title>org.apache.batik.ext.awt.image.codec</title>
    </head>
  
    <body>
  Provides a set of classes to encode/decode images in various raster
  image file formats.
    </body>
  </html>
  
  
  
  1.4       +2 -2      xml-batik/sources/org/apache/batik/gvt/event/SelectionListener.java
  
  Index: SelectionListener.java
  ===================================================================
  RCS file: /home/cvs/xml-batik/sources/org/apache/batik/gvt/event/SelectionListener.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- SelectionListener.java	2001/01/29 12:52:32	1.3
  +++ SelectionListener.java	2001/01/29 13:46:21	1.4
  @@ -11,10 +11,10 @@
   import java.util.EventListener;
   
   /**
  - * The listener interface for receiving graphics node paint events.
  + * The listener interface for receiving selection events.
    *
    * @author <a href="mailto:bill.haneman@ireland.sun.com">Bill Haneman</a>
  - * @version $Id: SelectionListener.java,v 1.3 2001/01/29 12:52:32 tkormann Exp $
  + * @version $Id: SelectionListener.java,v 1.4 2001/01/29 13:46:21 tkormann Exp $
    */
   public interface SelectionListener extends EventListener {