Ignore:
Timestamp:
2013-04-18T19:03:55+02:00 (11 years ago)
Author:
stoecker
Message:

javadoc fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmChangeReader.java

    r5345 r5881  
    2020     * constructor (for private and subclasses use only)
    2121     *
    22      * @see #parseDataSet(InputStream, DataSet, ProgressMonitor)
     22     * @see #parseDataSet(InputStream, ProgressMonitor)
    2323     */
    2424    protected OsmChangeReader() {
     
    9090     * Parse the given input source and return the dataset.
    9191     *
    92      * @param source the source input stream. Must not be null.
    93      * @param progressMonitor  the progress monitor. If null, {@link NullProgressMonitor#INSTANCE} is assumed
     92     * @param source the source input stream. Must not be <code>null</code>.
     93     * @param progressMonitor  the progress monitor. If <code>null</code>,
     94     * {@link org.openstreetmap.josm.gui.progress.NullProgressMonitor#INSTANCE} is assumed
    9495     *
    9596     * @return the dataset with the parsed data
    9697     * @throws IllegalDataException thrown if the an error was found while parsing the data from the source
    97      * @throws IllegalArgumentException thrown if source is null
     98     * @throws IllegalArgumentException thrown if source is <code>null</code>
    9899     */
    99100    public static DataSet parseDataSet(InputStream source, ProgressMonitor progressMonitor) throws IllegalDataException {
Note: See TracChangeset for help on using the changeset viewer.