You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by pb...@apache.org on 2004/01/05 03:01:38 UTC

cvs commit: xml-fop/src/java/org/apache/fop/datastructs ROBitSet.java SyncedCircularBuffer.java

pbwest      2004/01/04 18:01:38

  Modified:    src/java/org/apache/fop/datastructs Tag:
                        FOP_0-20-0_Alt-Design ROBitSet.java
                        SyncedCircularBuffer.java
  Log:
  Javadoc cleanup flagged by Eclipse
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.1.2.2   +15 -15    xml-fop/src/java/org/apache/fop/datastructs/Attic/ROBitSet.java
  
  Index: ROBitSet.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/datastructs/Attic/ROBitSet.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- ROBitSet.java	5 Jul 2003 19:06:35 -0000	1.1.2.1
  +++ ROBitSet.java	5 Jan 2004 02:01:38 -0000	1.1.2.2
  @@ -77,7 +77,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param set <tt>BitSet</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void and(BitSet set) {
           throw new UnsupportedOperationException("and invalid in ROBitSet");
  @@ -86,7 +86,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param set <tt>BitSet</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void andNot(BitSet set) {
           throw new UnsupportedOperationException("andNot invalid in ROBitSet");
  @@ -94,7 +94,7 @@
   
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void clear() {
           throw new UnsupportedOperationException("clear invalid in ROBitSet");
  @@ -103,7 +103,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param bitIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void clear(int bitIndex) {
           throw new UnsupportedOperationException("clear invalid in ROBitSet");
  @@ -113,7 +113,7 @@
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param fromIndex <tt>int</tt>
        * @param toIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void clear(int fromIndex, int toIndex) {
           throw new UnsupportedOperationException("clear invalid in ROBitSet");
  @@ -122,7 +122,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param bitIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void flip(int bitIndex) {
           throw new UnsupportedOperationException("flip invalid in ROBitSet");
  @@ -132,7 +132,7 @@
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param fromIndex <tt>int</tt>
        * @param toIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void flip(int fromIndex, int toIndex) {
           throw new UnsupportedOperationException("flip invalid in ROBitSet");
  @@ -141,7 +141,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param set <tt>BitSet</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void or(BitSet set) {
           throw new UnsupportedOperationException("or invalid in ROBitSet");
  @@ -150,7 +150,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param bitIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void set(int bitIndex) {
           throw new UnsupportedOperationException("set invalid in ROBitSet");
  @@ -160,7 +160,7 @@
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param bitIndex <tt>int</tt>
        * @param value <tt>boolean</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void set(int bitIndex, boolean value) {
           throw new UnsupportedOperationException("set invalid in ROBitSet");
  @@ -170,7 +170,7 @@
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param fromIndex <tt>int</tt>
        * @param toIndex <tt>int</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void set(int fromIndex, int toIndex) {
           throw new UnsupportedOperationException("set invalid in ROBitSet");
  @@ -181,7 +181,7 @@
        * @param fromIndex <tt>int</tt>
        * @param toIndex <tt>int</tt>
        * @param value <tt>boolean</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void set(int fromIndex, int toIndex, boolean value) {
           throw new UnsupportedOperationException("set invalid in ROBitSet");
  @@ -190,7 +190,7 @@
       /**
        * Unsupported operation. Overrides <tt>BitSet</tt> method.
        * @param set <tt>BitSet</tt>
  -     * @exception <tt>UnsupportedOperationException</tt>
  +     * @exception UnsupportedOperationException
        */
       public void xor(BitSet set) {
           throw new UnsupportedOperationException("xor invalid in ROBitSet");
  
  
  
  1.1.2.2   +3 -3      xml-fop/src/java/org/apache/fop/datastructs/Attic/SyncedCircularBuffer.java
  
  Index: SyncedCircularBuffer.java
  ===================================================================
  RCS file: /home/cvs/xml-fop/src/java/org/apache/fop/datastructs/Attic/SyncedCircularBuffer.java,v
  retrieving revision 1.1.2.1
  retrieving revision 1.1.2.2
  diff -u -r1.1.2.1 -r1.1.2.2
  --- SyncedCircularBuffer.java	5 Jul 2003 19:06:35 -0000	1.1.2.1
  +++ SyncedCircularBuffer.java	5 Jan 2004 02:01:38 -0000	1.1.2.2
  @@ -181,7 +181,7 @@
        * Then while the <tt>consumer</tt> thread is still alive and the
        * buffer has not emptied, <tt>wait()</tt> for the consumer.
        *
  -     * @param the Object to append to the buffer
  +     * @param thing the Object to append to the buffer
        * @exception NoSuchElementException if the buffer is full.
        * @exception InterruptedException if the wait() is interrupted.
        */
  
  
  

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