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

fix javadoc warnings

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.