Changeset 34153 in osm for applications/editors/josm/plugins/opendata/includes/org
- Timestamp:
- 2018-04-08T15:24:48+02:00 (7 years ago)
- Location:
- applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/table
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/table/TableTable.java
r30568 r34153 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 … … 20 20 21 21 /** 22 * 22 * 23 23 */ 24 24 public class TableTable { … … 71 71 /** 72 72 * Return all the rows (duplicated if repeated) 73 * @return all the rows (duplicated if repeated) 73 74 */ 74 75 public List<TableTableRow> getRows() { … … 78 79 /** 79 80 * Sets the value of the tablePrintRanges property. 80 * 81 * 81 82 * @param value allowed object is {@link String } 82 * 83 * 83 84 */ 84 85 public void setTablePrintRanges(final String value) { -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/table/TableTableCell.java
r29298 r34153 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 … … 23 23 24 24 protected int tableNumberColumnsRepeated = 1; 25 25 26 26 protected String tableStyleName; 27 27 … … 51 51 /** 52 52 * Gets the value of the tableStyleName property. 53 * 53 * 54 54 * @return possible object is {@link String } 55 * 55 * 56 56 */ 57 57 public String getStyleName() { … … 61 61 /** 62 62 * Gets the value of the tableNumberColumnsRepeated property. 63 * 63 * @return the value of the tableNumberColumnsRepeated property. 64 64 */ 65 65 public int getTableNumberColumnsRepeated() { 66 66 return this.tableNumberColumnsRepeated; 67 67 } 68 68 69 69 public TextP getTextP() { 70 70 return this.textP; … … 73 73 /** 74 74 * Sets the value of the tableNumberColumnsRepeated property. 75 * 75 * 76 76 * @param value allowed object is {@link String } 77 * 77 * 78 78 */ 79 79 public void setTableNumberColumnsRepeated(final String value) { … … 85 85 /** 86 86 * Sets the value of the tableStyleName property. 87 * 87 * 88 88 * @param value allowed object is {@link String } 89 * 89 * 90 90 */ 91 91 public void setTableStyleName(final String value) {
Note:
See TracChangeset
for help on using the changeset viewer.