Changeset 34152 in osm


Ignore:
Timestamp:
2018-04-08T15:13:54+02:00 (6 years ago)
Author:
donvip
Message:

fix javadoc warnings

Location:
applications/editors/josm/plugins/opendata
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/opendata/.settings/org.eclipse.jdt.core.prefs

    r34151 r34152  
    4545org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled
    4646org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled
    47 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=public
     47org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private
    4848org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore
    4949org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/hpsf/Section.java

    r34151 r34152  
    363363     * <p>Returns the value of the numeric property with the specified
    364364     * ID. If the property is not available, 0 is returned. A
    365      * subsequent call to {@link #wasNull} will return
     365     * subsequent call to {@code #wasNull} will return
    366366     * <code>true</code> to let the caller distinguish that case from
    367367     * a real property value of 0.</p>
     
    390390     * <p>Returns the value of the boolean property with the specified
    391391     * ID. If the property is not available, <code>false</code> is
    392      * returned. A subsequent call to {@link #wasNull} will return
     392     * returned. A subsequent call to {@code #wasNull} will return
    393393     * <code>true</code> to let the caller distinguish that case from
    394394     * a real property value of <code>false</code>.</p>
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/HyperlinkRecord.java

    r28000 r34152  
    129129                /**
    130130                 * Read a GUID in standard text form e.g.<br/>
    131                  * 13579BDF-0246-8ACE-0123-456789ABCDEF 
     131                 * 13579BDF-0246-8ACE-0123-456789ABCDEF
    132132                 * <br/> -&gt; <br/>
    133133                 *  0x13579BDF, 0x0246, 0x8ACE 0x0123456789ABCDEF
     
    188188     static final int  HLINK_URL    = 0x01;  // File link or URL.
    189189     static final int  HLINK_LABEL  = 0x14;  // Has label/description.
    190     /** Place in worksheet. If set, the {@link #_textMark} field will be present */
     190    /** Place in worksheet. If set, the {@code #_textMark} field will be present */
    191191     static final int  HLINK_PLACE  = 0x08;
    192192    private static final int  HLINK_TARGET_FRAME  = 0x80;  // has 'target frame'
     
    197197     final static GUID FILE_MONIKER = GUID.parse("00000303-0000-0000-C000-000000000046");
    198198    /** expected Tail of a URL link */
    199     private final static byte[] URL_TAIL  = HexRead.readFromString("79 58 81 F4  3B 1D 7F 48   AF 2C 82 5D  C4 85 27 63   00 00 00 00  A5 AB 00 00"); 
     199    private final static byte[] URL_TAIL  = HexRead.readFromString("79 58 81 F4  3B 1D 7F 48   AF 2C 82 5D  C4 85 27 63   00 00 00 00  A5 AB 00 00");
    200200    /** expected Tail of a file link */
    201201    private final static byte[] FILE_TAIL = HexRead.readFromString("FF FF AD DE  00 00 00 00   00 00 00 00  00 00 00 00   00 00 00 00  00 00 00 00");
     
    229229     */
    230230    private String _textMark;
    231    
     231
    232232    private byte[] _uninterpretedTail;
    233233
     
    388388    }
    389389
     390    @Override
    390391    public void serialize(LittleEndianOutput out) {
    391392        _range.serialize(out);
     
    442443    }
    443444
     445    @Override
    444446    protected int getDataSize() {
    445447        int size = 0;
     
    498500    }
    499501
     502    @Override
    500503    public short getSid() {
    501504        return HyperlinkRecord.sid;
     
    503506
    504507
     508    @Override
    505509    public String toString() {
    506510        StringBuffer buffer = new StringBuffer();
     
    526530
    527531
     532    @Override
    528533    public Object clone() {
    529534        HyperlinkRecord rec = new HyperlinkRecord();
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFCell.java

    r34151 r34152  
    105105     *                CELL_TYPE_BOOLEAN, CELL_TYPE_ERROR
    106106     *                Type of cell
    107      * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short,int)
    108107     */
    109108    protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col,
     
    716715     *
    717716     * @see #setCellType(int)
    718      * @see #setCellFormula(String)
    719      * @see HSSFRow#removeCell(org.apache.poi.ss.usermodel.Cell)
    720      * @see org.apache.poi.hssf.usermodel.HSSFSheet#removeRow(org.apache.poi.ss.usermodel.Row)
    721      * @see org.apache.poi.hssf.usermodel.HSSFSheet#shiftRows(int, int, int)
    722      * @see org.apache.poi.hssf.usermodel.HSSFSheet#addMergedRegion(org.apache.poi.ss.util.CellRangeAddress)
    723717     * @throws IllegalStateException if modification is not allowed
    724718     */
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFName.java

    r28000 r34152  
    2929    private NameRecord _definedNameRec;
    3030
    31     /** 
     31    /**
    3232     * Creates new HSSFName   - called by HSSFWorkbook to create a name from
    3333     * scratch.
    3434     *
    35      * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createName()
    3635     * @param name the Name Record
    3736     * @param book workbook object associated with the sheet.
     
    4241
    4342
     43    @Override
    4444    public String toString() {
    4545        StringBuffer sb = new StringBuffer(64);
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFSheet.java

    r34151 r34152  
    6969     * @param workbook - The HSSF Workbook object associated with the sheet.
    7070     * @param sheet - lowlevel Sheet object this sheet will represent
    71      * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createSheet()
    7271     */
    7372    protected HSSFSheet(HSSFWorkbook workbook, InternalSheet sheet) {
  • applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/util/MutableFPNumber.java

    r28000 r34152  
    2626        /**
    2727         * The minimum value in 'Base-10 normalised form'.<br/>
    28          * When {@link #_binaryExponent} == 46 this is the the minimum {@link #_frac} value
     28         * When {@link #_binaryExponent} == 46 this is the the minimum {@code #_frac} value
    2929         *  (10<sup>14</sup>-0.05) * 2^17
    3030         *  <br/>
     
    3838        /**
    3939         * For 'Base-10 normalised form'<br/>
    40          * The maximum {@link #_frac} value when {@link #_binaryExponent} == 49
     40         * The maximum {@code #_frac} value when {@link #_binaryExponent} == 49
    4141         * (10^15-0.5) * 2^14
    4242         */
  • applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java

    r30568 r34152  
    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
     
    2525/**
    2626 * A helper to create children in the schema order.
    27  * 
     27 *
    2828 * @author Sylvain CUAZ
    2929 */
     
    6565    /**
    6666     * Trouve l'index ou il faut insérer le fils dans ce document.
    67      * 
     67     *
    6868     * @param childName le nom du fils que l'on veut insérer.
    6969     * @return l'index ou il faut l'insérer (s'il est déjà présent son index actuel +1).
    70      * @throws IllegalArgumentException if childName is not in {@link #getChildren()}.
    7170     */
    7271    @SuppressWarnings("unchecked")
     
    9493    /**
    9594     * Insère cet élément à la bonne place. The child should not be already present.
    96      * 
     95     *
    9796     * @param child l'élément à insérer, doit être dans TOP_ELEMENTS.
    9897     */
     
    105104    /**
    106105     * Return the asked child, optionally creating it.
    107      * 
     106     *
    108107     * @param childNS the namespace of the child.
    109108     * @param childName the name of the child.
Note: See TracChangeset for help on using the changeset viewer.