Changeset 30568 in osm for applications/editors/josm/plugins/opendata/includes/org/jopendocument/model
- Timestamp:
- 2014-08-06T19:33:57+02:00 (12 years ago)
- Location:
- applications/editors/josm/plugins/opendata/includes/org/jopendocument/model
- Files:
-
- 5 edited
-
office/OfficeBody.java (modified) (1 diff)
-
office/OfficeSpreadsheet.java (modified) (1 diff)
-
table/TableTable.java (modified) (2 diffs)
-
table/TableTableRow.java (modified) (2 diffs)
-
text/TextP.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/office/OfficeBody.java
r28000 r30568 24 24 public class OfficeBody { 25 25 26 private final List<OfficeSpreadsheet> officeSpreadsheets = new Vector< OfficeSpreadsheet>();26 private final List<OfficeSpreadsheet> officeSpreadsheets = new Vector<>(); 27 27 28 28 public void addOfficeSpreadsheet(final OfficeSpreadsheet spread) { -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/office/OfficeSpreadsheet.java
r28000 r30568 22 22 23 23 public class OfficeSpreadsheet { 24 List<TableTable> tables = new Vector< TableTable>();24 List<TableTable> tables = new Vector<>(); 25 25 26 26 public void addTable(final TableTable table) { -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/table/TableTable.java
r28000 r30568 25 25 26 26 // Une colonne ou ligne repeated est dupliquée dans la liste 27 ArrayList<TableTableColumn> columns = new ArrayList< TableTableColumn>();27 ArrayList<TableTableColumn> columns = new ArrayList<>(); 28 28 29 29 private int printStartCol = 0; … … 35 35 private int printStopRow = 0; 36 36 37 ArrayList<TableTableRow> rows = new ArrayList< TableTableRow>();37 ArrayList<TableTableRow> rows = new ArrayList<>(); 38 38 39 39 public void addColumn(final TableTableColumn col) { -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/table/TableTableRow.java
r29298 r30568 27 27 ArrayList<TableTableCell> allCells; 28 28 29 Vector<TableTableCell> cells = new Vector< TableTableCell>();29 Vector<TableTableCell> cells = new Vector<>(); 30 30 31 31 int id = 0; … … 47 47 */ 48 48 void computeAllCells() { 49 this.allCells = new ArrayList< TableTableCell>();49 this.allCells = new ArrayList<>(); 50 50 for (int index = 0; index < this.cells.size(); index++) { 51 51 final TableTableCell c = this.cells.get(index); -
applications/editors/josm/plugins/opendata/includes/org/jopendocument/model/text/TextP.java
r28000 r30568 24 24 public class TextP { 25 25 26 private final List<TextSpan> textSpans = new Vector< TextSpan>();26 private final List<TextSpan> textSpans = new Vector<>(); 27 27 28 28 public void addTextSpan(final TextSpan p) {
Note:
See TracChangeset
for help on using the changeset viewer.
