You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@poi.apache.org by kl...@apache.org on 2003/01/29 19:08:03 UTC

cvs commit: jakarta-poi/src/java/org/apache/poi/hpsf HPSFException.java HPSFRuntimeException.java IllegalPropertySetDataException.java MarkUnsupportedException.java NoPropertySetStreamException.java NoSingleSectionException.java PropertySetFactory.java SpecialPropertySet.java SummaryInformation.java Thumbnail.java UnexpectedPropertySetTypeException.java Util.java Variant.java

klute       2003/01/29 10:08:03

  Modified:    src/java/org/apache/poi/hpsf HPSFException.java
                        HPSFRuntimeException.java
                        IllegalPropertySetDataException.java
                        MarkUnsupportedException.java
                        NoPropertySetStreamException.java
                        NoSingleSectionException.java
                        PropertySetFactory.java SpecialPropertySet.java
                        SummaryInformation.java Thumbnail.java
                        UnexpectedPropertySetTypeException.java Util.java
                        Variant.java
  Log:
  Illegal Javadoc tag "@created" removed.
  
  Revision  Changes    Path
  1.5       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/HPSFException.java
  
  Index: HPSFException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/HPSFException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HPSFException.java	11 May 2002 14:47:23 -0000	1.4
  +++ HPSFException.java	29 Jan 2003 18:08:01 -0000	1.5
  @@ -62,7 +62,6 @@
    *  that caused this one to be thrown.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id$
    *@since      2002-02-09
    */
  
  
  
  1.5       +0 -1      jakarta-poi/src/java/org/apache/poi/hpsf/HPSFRuntimeException.java
  
  Index: HPSFRuntimeException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/HPSFRuntimeException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- HPSFRuntimeException.java	11 May 2002 14:47:23 -0000	1.4
  +++ HPSFRuntimeException.java	29 Jan 2003 18:08:01 -0000	1.5
  @@ -62,7 +62,6 @@
    *  that caused this one to be thrown.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id: HPSFRuntimeException.java,v 1.3 2002/05/01 09:31:52 klute Exp
    *      $
    *@since      2002-02-09
  
  
  
  1.2       +127 -128  jakarta-poi/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java
  
  Index: IllegalPropertySetDataException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/IllegalPropertySetDataException.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- IllegalPropertySetDataException.java	26 May 2002 22:18:40 -0000	1.1
  +++ IllegalPropertySetDataException.java	29 Jan 2003 18:08:01 -0000	1.2
  @@ -1,128 +1,127 @@
  -/*
  - *  ====================================================================
  - *  The Apache Software License, Version 1.1
  - *
  - *  Copyright (c) 2000 The Apache Software Foundation.  All rights
  - *  reserved.
  - *
  - *  Redistribution and use in source and binary forms, with or without
  - *  modification, are permitted provided that the following conditions
  - *  are met:
  - *
  - *  1. Redistributions of source code must retain the above copyright
  - *  notice, this list of conditions and the following disclaimer.
  - *
  - *  2. Redistributions in binary form must reproduce the above copyright
  - *  notice, this list of conditions and the following disclaimer in
  - *  the documentation and/or other materials provided with the
  - *  distribution.
  - *
  - *  3. The end-user documentation included with the redistribution,
  - *  if any, must include the following acknowledgment:
  - *  "This product includes software developed by the
  - *  Apache Software Foundation (http://www.apache.org/)."
  - *  Alternately, this acknowledgment may appear in the software itself,
  - *  if and wherever such third-party acknowledgments normally appear.
  - *
  - *  4. The names "Apache" and "Apache Software Foundation" must
  - *  not be used to endorse or promote products derived from this
  - *  software without prior written permission. For written
  - *  permission, please contact apache@apache.org.
  - *
  - *  5. Products derived from this software may not be called "Apache",
  - *  nor may "Apache" appear in their name, without prior written
  - *  permission of the Apache Software Foundation.
  - *
  - *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  - *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  - *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  - *  DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  - *  ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  - *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  - *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  - *  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  - *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  - *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  - *  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  - *  SUCH DAMAGE.
  - *  ====================================================================
  - *
  - *  This software consists of voluntary contributions made by many
  - *  individuals on behalf of the Apache Software Foundation.  For more
  - *  information on the Apache Software Foundation, please see
  - *  <http://www.apache.org/>.
  - */
  -package org.apache.poi.hpsf;
  -
  -/**
  - *  <p>
  - *
  - *  This exception is thrown when there is an illegal value set in a
  - *  {@link PropertySet}. For example, a {@link Variant#VT_BOOL} must have
  - *  a value of <code>-1 (true)</code> or <code>0 (false)</code>.
  - *  Any other value would trigger this exception. It supports a nested
  - *  "reason" throwable, i.e. an exception that caused this one to be thrown.
  - *  </p>
  - *
  - *@author     Drew Varner(Drew.Varner atDomain sc.edu)
  - *@created    May 26, 2002
  - *@version    $Id$
  - *@since      2002-05-26
  - */
  -public class  IllegalPropertySetDataException extends HPSFRuntimeException {
  -
  -
  -
  -    /**
  -     *  <p>
  -     *
  -     *  Creates a new {@link IllegalPropertySetDataException}.</p>
  -     */
  -    public IllegalPropertySetDataException() {
  -        super();
  -    }
  -
  -
  -
  -    /**
  -     *  <p>
  -     *
  -     *  Creates a new {@link IllegalPropertySetDataException} with a message string.</p>
  -     *
  -     *@param  msg  Description of the Parameter
  -     */
  -    public IllegalPropertySetDataException(final String msg) {
  -        super(msg);
  -    }
  -
  -
  -
  -    /**
  -     *  <p>
  -     *
  -     *  Creates a new {@link IllegalPropertySetDataException} with a reason.</p>
  -     *
  -     *@param  reason  Description of the Parameter
  -     */
  -    public IllegalPropertySetDataException(final Throwable reason) {
  -        super(reason);
  -    }
  -
  -
  -
  -    /**
  -     *  <p>
  -     *
  -     *  Creates a new {@link IllegalPropertySetDataException} with a message
  -     *  string and a reason.</p>
  -     *
  -     *@param  msg     Description of the Parameter
  -     *@param  reason  Description of the Parameter
  -     */
  -    public IllegalPropertySetDataException(final String msg,
  -                                           final Throwable reason) {
  -        super(msg,reason);
  -    }
  -
  -
  -}
  +/*
  + *  ====================================================================
  + *  The Apache Software License, Version 1.1
  + *
  + *  Copyright (c) 2000 The Apache Software Foundation.  All rights
  + *  reserved.
  + *
  + *  Redistribution and use in source and binary forms, with or without
  + *  modification, are permitted provided that the following conditions
  + *  are met:
  + *
  + *  1. Redistributions of source code must retain the above copyright
  + *  notice, this list of conditions and the following disclaimer.
  + *
  + *  2. Redistributions in binary form must reproduce the above copyright
  + *  notice, this list of conditions and the following disclaimer in
  + *  the documentation and/or other materials provided with the
  + *  distribution.
  + *
  + *  3. The end-user documentation included with the redistribution,
  + *  if any, must include the following acknowledgment:
  + *  "This product includes software developed by the
  + *  Apache Software Foundation (http://www.apache.org/)."
  + *  Alternately, this acknowledgment may appear in the software itself,
  + *  if and wherever such third-party acknowledgments normally appear.
  + *
  + *  4. The names "Apache" and "Apache Software Foundation" must
  + *  not be used to endorse or promote products derived from this
  + *  software without prior written permission. For written
  + *  permission, please contact apache@apache.org.
  + *
  + *  5. Products derived from this software may not be called "Apache",
  + *  nor may "Apache" appear in their name, without prior written
  + *  permission of the Apache Software Foundation.
  + *
  + *  THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  + *  WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  + *  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  + *  DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  + *  ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  + *  SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  + *  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  + *  USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  + *  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  + *  OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  + *  OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  + *  SUCH DAMAGE.
  + *  ====================================================================
  + *
  + *  This software consists of voluntary contributions made by many
  + *  individuals on behalf of the Apache Software Foundation.  For more
  + *  information on the Apache Software Foundation, please see
  + *  <http://www.apache.org/>.
  + */
  +package org.apache.poi.hpsf;
  +
  +/**
  + *  <p>
  + *
  + *  This exception is thrown when there is an illegal value set in a
  + *  {@link PropertySet}. For example, a {@link Variant#VT_BOOL} must have
  + *  a value of <code>-1 (true)</code> or <code>0 (false)</code>.
  + *  Any other value would trigger this exception. It supports a nested
  + *  "reason" throwable, i.e. an exception that caused this one to be thrown.
  + *  </p>
  + *
  + *@author     Drew Varner(Drew.Varner atDomain sc.edu)
  + *@version    $Id$
  + *@since      2002-05-26
  + */
  +public class  IllegalPropertySetDataException extends HPSFRuntimeException {
  +
  +
  +
  +    /**
  +     *  <p>
  +     *
  +     *  Creates a new {@link IllegalPropertySetDataException}.</p>
  +     */
  +    public IllegalPropertySetDataException() {
  +        super();
  +    }
  +
  +
  +
  +    /**
  +     *  <p>
  +     *
  +     *  Creates a new {@link IllegalPropertySetDataException} with a message string.</p>
  +     *
  +     *@param  msg  Description of the Parameter
  +     */
  +    public IllegalPropertySetDataException(final String msg) {
  +        super(msg);
  +    }
  +
  +
  +
  +    /**
  +     *  <p>
  +     *
  +     *  Creates a new {@link IllegalPropertySetDataException} with a reason.</p>
  +     *
  +     *@param  reason  Description of the Parameter
  +     */
  +    public IllegalPropertySetDataException(final Throwable reason) {
  +        super(reason);
  +    }
  +
  +
  +
  +    /**
  +     *  <p>
  +     *
  +     *  Creates a new {@link IllegalPropertySetDataException} with a message
  +     *  string and a reason.</p>
  +     *
  +     *@param  msg     Description of the Parameter
  +     *@param  reason  Description of the Parameter
  +     */
  +    public IllegalPropertySetDataException(final String msg,
  +                                           final Throwable reason) {
  +        super(msg,reason);
  +    }
  +
  +
  +}
  
  
  
  1.5       +1 -3      jakarta-poi/src/java/org/apache/poi/hpsf/MarkUnsupportedException.java
  
  Index: MarkUnsupportedException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/MarkUnsupportedException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- MarkUnsupportedException.java	11 May 2002 14:47:23 -0000	1.4
  +++ MarkUnsupportedException.java	29 Jan 2003 18:08:01 -0000	1.5
  @@ -61,9 +61,7 @@
    *  the {@link java.io.InputStream#mark} operation.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
  - *@version    $Id: MarkUnsupportedException.java,v 1.3 2002/05/01 09:31:52 klute
  - *      Exp $
  + *@version    $Id$
    *@since      2002-02-09
    */
   public class MarkUnsupportedException extends HPSFException {
  
  
  
  1.5       +1 -3      jakarta-poi/src/java/org/apache/poi/hpsf/NoPropertySetStreamException.java
  
  Index: NoPropertySetStreamException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/NoPropertySetStreamException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NoPropertySetStreamException.java	11 May 2002 14:47:23 -0000	1.4
  +++ NoPropertySetStreamException.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -65,9 +65,7 @@
    *  documented there.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
  - *@version    $Id: NoPropertySetStreamException.java,v 1.3 2002/05/01 09:31:52
  - *      klute Exp $
  + *@version    $Id$
    *@since      2002-02-09
    */
   public class NoPropertySetStreamException extends HPSFException {
  
  
  
  1.5       +1 -3      jakarta-poi/src/java/org/apache/poi/hpsf/NoSingleSectionException.java
  
  Index: NoSingleSectionException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/NoSingleSectionException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- NoSingleSectionException.java	11 May 2002 14:47:23 -0000	1.4
  +++ NoSingleSectionException.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -65,9 +65,7 @@
    *  documented there.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
  - *@version    $Id: NoSingleSectionException.java,v 1.3 2002/05/01 09:31:52 klute
  - *      Exp $
  + *@version    $Id$
    *@since      2002-02-09
    */
   public class NoSingleSectionException extends HPSFRuntimeException {
  
  
  
  1.5       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/PropertySetFactory.java
  
  Index: PropertySetFactory.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/PropertySetFactory.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- PropertySetFactory.java	11 May 2002 14:47:23 -0000	1.4
  +++ PropertySetFactory.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -63,7 +63,6 @@
    *  DocumentSummaryInformation} and {@link PropertySet}.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id$
    *@since      2002-02-09
    */
  
  
  
  1.6       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/SpecialPropertySet.java
  
  Index: SpecialPropertySet.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/SpecialPropertySet.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- SpecialPropertySet.java	19 May 2002 18:09:26 -0000	1.5
  +++ SpecialPropertySet.java	29 Jan 2003 18:08:02 -0000	1.6
  @@ -84,7 +84,6 @@
    *  the convenience classes came only late to my mind.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id$
    *@since      2002-02-09
    */
  
  
  
  1.8       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/SummaryInformation.java
  
  Index: SummaryInformation.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/SummaryInformation.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- SummaryInformation.java	11 May 2002 14:47:23 -0000	1.7
  +++ SummaryInformation.java	29 Jan 2003 18:08:02 -0000	1.8
  @@ -73,7 +73,6 @@
    *  </a> for documentation from That Redmond Company.
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@see        DocumentSummaryInformation
    *@version    $Id$
    *@since      2002-02-09
  
  
  
  1.4       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/Thumbnail.java
  
  Index: Thumbnail.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/Thumbnail.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- Thumbnail.java	19 May 2002 18:09:26 -0000	1.3
  +++ Thumbnail.java	29 Jan 2003 18:08:02 -0000	1.4
  @@ -62,7 +62,6 @@
    *  VT_CF}) format.</p>
    *
    *@author     Drew Varner (Drew.Varner inOrAround sc.edu)
  - *@created    May 10, 2002
    *@see        SummaryInformation#getThumbnail()
    *@version    $Id$
    *@since      2002-04-29
  
  
  
  1.5       +1 -3      jakarta-poi/src/java/org/apache/poi/hpsf/UnexpectedPropertySetTypeException.java
  
  Index: UnexpectedPropertySetTypeException.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/UnexpectedPropertySetTypeException.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- UnexpectedPropertySetTypeException.java	11 May 2002 14:47:23 -0000	1.4
  +++ UnexpectedPropertySetTypeException.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -65,9 +65,7 @@
    *  documented there.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
  - *@version    $Id: UnexpectedPropertySetTypeException.java,v 1.3 2002/05/01
  - *      09:31:52 klute Exp $
  + *@version    $Id$
    *@since      2002-02-09
    */
   public class UnexpectedPropertySetTypeException extends HPSFException {
  
  
  
  1.5       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/Util.java
  
  Index: Util.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/Util.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Util.java	11 May 2002 14:47:23 -0000	1.4
  +++ Util.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -62,7 +62,6 @@
    *  Provides various static utility methods.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id$
    *@since      2002-02-09
    */
  
  
  
  1.5       +1 -2      jakarta-poi/src/java/org/apache/poi/hpsf/Variant.java
  
  Index: Variant.java
  ===================================================================
  RCS file: /home/cvs/jakarta-poi/src/java/org/apache/poi/hpsf/Variant.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- Variant.java	11 May 2002 14:47:23 -0000	1.4
  +++ Variant.java	29 Jan 2003 18:08:02 -0000	1.5
  @@ -67,7 +67,6 @@
    *  <strong>[S]</strong> - may appear in a Safe Array.</p>
    *
    *@author     Rainer Klute (klute@rainer-klute.de)
  - *@created    May 10, 2002
    *@version    $Id$
    *@since      2002-02-09
    */