Ignore:
Timestamp:
2018-04-08T15:09:55+02:00 (8 years ago)
Author:
donvip
Message:

fix javadoc warnings

Location:
applications/editors/josm/plugins/opendata/includes/org/jopendocument
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ODPackage.java

    r30568 r34151  
    11/*
    22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    3  * 
     3 *
    44 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved.
    5  * 
     5 *
    66 * The contents of this file are subject to the terms of the GNU
    7  * General Public License Version 3 only ("GPL"). 
    8  * You may not use this file except in compliance with the License. 
     7 * General Public License Version 3 only ("GPL").
     8 * You may not use this file except in compliance with the License.
    99 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
    1010 * See the License for the specific language governing permissions and limitations under the License.
    11  * 
     11 *
    1212 * When distributing the software, include this License Header Notice in each file.
    13  * 
     13 *
    1414 */
    1515
     
    1717
    1818import java.io.File;
    19 import java.io.IOException;
    2019import java.util.HashMap;
    2120import java.util.HashSet;
     
    2423
    2524import org.jdom.Document;
    26 import org.jdom.JDOMException;
    2725import org.jopendocument.util.CopyUtils;
    2826import org.jopendocument.util.FileUtils;
     
    3028/**
    3129 * An OpenDocument package, ie a zip containing XML documents and their associated files.
    32  * 
     30 *
    3331 * @author ILM Informatique 2 août 2004
    3432 */
     
    7674     * The version of this package, <code>null</code> if it cannot be found (eg this package is
    7775     * empty, or contains no xml).
    78      * 
     76     *
    7977     * @return the version of this package, can be <code>null</code>.
    8078     */
     
    130128    }
    131129
    132     /** 
     130    /**
    133131     * Return an XML document.
    134      * 
     132     *
    135133     * @param xmlEntry the filename, eg "styles.xml".
    136134     * @return the matching document, or <code>null</code> if there's none.
    137      * @throws JDOMException if error about the XML.
    138      * @throws IOException if an error occurs while reading the file.
    139135     */
    140136    public Document getDocument(String xmlEntry) {
  • applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/spreadsheet/Cell.java

    r30568 r34151  
    11/*
    22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    3  * 
     3 *
    44 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved.
    5  * 
     5 *
    66 * The contents of this file are subject to the terms of the GNU
    7  * General Public License Version 3 only ("GPL"). 
    8  * You may not use this file except in compliance with the License. 
     7 * General Public License Version 3 only ("GPL").
     8 * You may not use this file except in compliance with the License.
    99 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
    1010 * See the License for the specific language governing permissions and limitations under the License.
    11  * 
     11 *
    1212 * When distributing the software, include this License Header Notice in each file.
    13  * 
     13 *
    1414 */
    1515
     
    3535/**
    3636 * A cell in a calc document. If you want to change a cell value you must obtain a MutableCell.
    37  * 
     37 *
    3838 * @author Sylvain
    3939 * @param <D> type of document
     
    4444    private static final Pattern multiSpacePattern = Pattern.compile("[\t\r\n ]+");
    4545    private static boolean OO_MODE = true;
    46 
    47     /**
    48      * Set whether {@link #getTextValue()} parses strings using the standard way or using the
    49      * OpenOffice.org way.
    50      *
    51      * @param ooMode <code>true</code> if strings should be parsed the OO way.
    52      * @see #getTextValue(boolean)
    53      */
    54     /*public static void setTextValueMode(boolean ooMode) {
    55         OO_MODE = ooMode;
    56     }*/
    5746
    5847    public static boolean getTextValueMode() {
     
    118107    /**
    119108     * Calls {@link #getTextValue(boolean)} using {@link #getTextValueMode()}.
    120      * 
     109     *
    121110     * @return a string for the content of this cell.
    122111     */
     
    131120     * OO way (as of 3.1) and the OpenDocument way see section 5.1.1 White-space Characters of
    132121     * OpenDocument-v1.0-os and OpenDocument-v1.2-part1. In essence OpenOffice never trim strings.
    133      * 
     122     *
    134123     * @param ooMode whether to use the OO way or the standard way.
    135124     * @return a string for the content of this cell.
  • applications/editors/josm/plugins/opendata/includes/org/jopendocument/util/CollectionUtils.java

    r31942 r34151  
    11/*
    22 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
    3  * 
     3 *
    44 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved.
    5  * 
     5 *
    66 * The contents of this file are subject to the terms of the GNU
    7  * General Public License Version 3 only ("GPL"). 
    8  * You may not use this file except in compliance with the License. 
     7 * General Public License Version 3 only ("GPL").
     8 * You may not use this file except in compliance with the License.
    99 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html
    1010 * See the License for the specific language governing permissions and limitations under the License.
    11  * 
     11 *
    1212 * When distributing the software, include this License Header Notice in each file.
    13  * 
     13 *
    1414 */
    1515
     
    2626/**
    2727 * Une classe regroupant des méthodes utilitaires pour les collections.
    28  * 
     28 *
    2929 * @author ILM Informatique 30 sept. 2004
    3030 */
     
    3434     * Concatene une collection. Cette méthode va appliquer un transformation sur chaque élément
    3535     * avant d'appeler toString(). join([-1, 3, 0], " ,", doubleTransformer) == "-2, 6, 0"
    36      * 
     36     *
    3737     * @param <E> type of items
    3838     * @param c la collection a concaténer.
     
    6969    /**
    7070     * Concatene une collection en appelant simplement toString() sur chaque élément.
    71      * 
     71     *
    7272     * @param <T> type of collection
    7373     * @param c la collection a concaténer.
    7474     * @param sep le séparateur entre chaque élément.
    7575     * @return la chaine composée de chacun des éléments séparés par <code>sep</code>.
    76      * @see #join(Collection, String, ITransformer)
    7776     */
    7877    static public <T> String join(Collection<T> c, String sep) {
Note: See TracChangeset for help on using the changeset viewer.