Changeset 34152 in osm for applications/editors/josm/plugins
- Timestamp:
- 2018-04-08T15:13:54+02:00 (7 years ago)
- 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 45 45 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsDeprecatedRef=enabled 46 46 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsNotVisibleRef=enabled 47 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=p ublic47 org.eclipse.jdt.core.compiler.problem.invalidJavadocTagsVisibility=private 48 48 org.eclipse.jdt.core.compiler.problem.localVariableHiding=ignore 49 49 org.eclipse.jdt.core.compiler.problem.methodWithConstructorName=warning -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hpsf/Section.java
r34151 r34152 363 363 * <p>Returns the value of the numeric property with the specified 364 364 * ID. If the property is not available, 0 is returned. A 365 * subsequent call to {@ link#wasNull} will return365 * subsequent call to {@code #wasNull} will return 366 366 * <code>true</code> to let the caller distinguish that case from 367 367 * a real property value of 0.</p> … … 390 390 * <p>Returns the value of the boolean property with the specified 391 391 * ID. If the property is not available, <code>false</code> is 392 * returned. A subsequent call to {@ link#wasNull} will return392 * returned. A subsequent call to {@code #wasNull} will return 393 393 * <code>true</code> to let the caller distinguish that case from 394 394 * a real property value of <code>false</code>.</p> -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/record/HyperlinkRecord.java
r28000 r34152 129 129 /** 130 130 * Read a GUID in standard text form e.g.<br/> 131 * 13579BDF-0246-8ACE-0123-456789ABCDEF 131 * 13579BDF-0246-8ACE-0123-456789ABCDEF 132 132 * <br/> -> <br/> 133 133 * 0x13579BDF, 0x0246, 0x8ACE 0x0123456789ABCDEF … … 188 188 static final int HLINK_URL = 0x01; // File link or URL. 189 189 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 */ 191 191 static final int HLINK_PLACE = 0x08; 192 192 private static final int HLINK_TARGET_FRAME = 0x80; // has 'target frame' … … 197 197 final static GUID FILE_MONIKER = GUID.parse("00000303-0000-0000-C000-000000000046"); 198 198 /** 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"); 200 200 /** expected Tail of a file link */ 201 201 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"); … … 229 229 */ 230 230 private String _textMark; 231 231 232 232 private byte[] _uninterpretedTail; 233 233 … … 388 388 } 389 389 390 @Override 390 391 public void serialize(LittleEndianOutput out) { 391 392 _range.serialize(out); … … 442 443 } 443 444 445 @Override 444 446 protected int getDataSize() { 445 447 int size = 0; … … 498 500 } 499 501 502 @Override 500 503 public short getSid() { 501 504 return HyperlinkRecord.sid; … … 503 506 504 507 508 @Override 505 509 public String toString() { 506 510 StringBuffer buffer = new StringBuffer(); … … 526 530 527 531 532 @Override 528 533 public Object clone() { 529 534 HyperlinkRecord rec = new HyperlinkRecord(); -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFCell.java
r34151 r34152 105 105 * CELL_TYPE_BOOLEAN, CELL_TYPE_ERROR 106 106 * Type of cell 107 * @see org.apache.poi.hssf.usermodel.HSSFRow#createCell(short,int)108 107 */ 109 108 protected HSSFCell(HSSFWorkbook book, HSSFSheet sheet, int row, short col, … … 716 715 * 717 716 * @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)723 717 * @throws IllegalStateException if modification is not allowed 724 718 */ -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFName.java
r28000 r34152 29 29 private NameRecord _definedNameRec; 30 30 31 /** 31 /** 32 32 * Creates new HSSFName - called by HSSFWorkbook to create a name from 33 33 * scratch. 34 34 * 35 * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createName()36 35 * @param name the Name Record 37 36 * @param book workbook object associated with the sheet. … … 42 41 43 42 43 @Override 44 44 public String toString() { 45 45 StringBuffer sb = new StringBuffer(64); -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/hssf/usermodel/HSSFSheet.java
r34151 r34152 69 69 * @param workbook - The HSSF Workbook object associated with the sheet. 70 70 * @param sheet - lowlevel Sheet object this sheet will represent 71 * @see org.apache.poi.hssf.usermodel.HSSFWorkbook#createSheet()72 71 */ 73 72 protected HSSFSheet(HSSFWorkbook workbook, InternalSheet sheet) { -
applications/editors/josm/plugins/opendata/includes/org/apache/poi/ss/util/MutableFPNumber.java
r28000 r34152 26 26 /** 27 27 * The minimum value in 'Base-10 normalised form'.<br/> 28 * When {@link #_binaryExponent} == 46 this is the the minimum {@ link#_frac} value28 * When {@link #_binaryExponent} == 46 this is the the minimum {@code #_frac} value 29 29 * (10<sup>14</sup>-0.05) * 2^17 30 30 * <br/> … … 38 38 /** 39 39 * For 'Base-10 normalised form'<br/> 40 * The maximum {@ link#_frac} value when {@link #_binaryExponent} == 4940 * The maximum {@code #_frac} value when {@link #_binaryExponent} == 49 41 41 * (10^15-0.5) * 2^14 42 42 */ -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/dom/ChildCreator.java
r30568 r34152 1 1 /* 2 2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. 3 * 3 * 4 4 * Copyright 2008 jOpenDocument, by ILM Informatique. All rights reserved. 5 * 5 * 6 6 * 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. 9 9 * You can obtain a copy of the License at http://www.gnu.org/licenses/gpl-3.0.html 10 10 * See the License for the specific language governing permissions and limitations under the License. 11 * 11 * 12 12 * When distributing the software, include this License Header Notice in each file. 13 * 13 * 14 14 */ 15 15 … … 25 25 /** 26 26 * A helper to create children in the schema order. 27 * 27 * 28 28 * @author Sylvain CUAZ 29 29 */ … … 65 65 /** 66 66 * Trouve l'index ou il faut insérer le fils dans ce document. 67 * 67 * 68 68 * @param childName le nom du fils que l'on veut insérer. 69 69 * @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()}.71 70 */ 72 71 @SuppressWarnings("unchecked") … … 94 93 /** 95 94 * Insère cet élément à la bonne place. The child should not be already present. 96 * 95 * 97 96 * @param child l'élément à insérer, doit être dans TOP_ELEMENTS. 98 97 */ … … 105 104 /** 106 105 * Return the asked child, optionally creating it. 107 * 106 * 108 107 * @param childNS the namespace of the child. 109 108 * @param childName the name of the child.
Note:
See TracChangeset
for help on using the changeset viewer.