Changeset 32907 in osm for applications/editors/josm/plugins/seachart/src/s57
- Timestamp:
- 2016-09-03T16:43:42+02:00 (9 years ago)
- Location:
- applications/editors/josm/plugins/seachart/src/s57
- Files:
-
- 9 edited
-
S57att.java (modified) (2 diffs)
-
S57box.java (modified) (2 diffs)
-
S57dat.java (modified) (2 diffs)
-
S57dec.java (modified) (2 diffs)
-
S57enc.java (modified) (2 diffs)
-
S57map.java (modified) (2 diffs)
-
S57obj.java (modified) (2 diffs)
-
S57osm.java (modified) (2 diffs)
-
S57val.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/seachart/src/s57/S57att.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 15 7 import s57.S57obj.Obj; 16 8 17 public class S57att { // S57 Attribute lookup tables & methods 9 /** 10 * @author Malcolm Herring 11 */ 12 public final class S57att { // S57 Attribute lookup tables & methods 13 private S57att() { 14 // Hide default constructor for utilities classes 15 } 18 16 // CHECKSTYLE.OFF: LineLength 19 17 -
applications/editors/josm/plugins/seachart/src/s57/S57box.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 19 11 import s57.S57obj.Obj; 20 12 21 public class S57box { //S57 bounding box truncation 13 /** 14 * @author Malcolm Herring 15 */ 16 public final class S57box { //S57 bounding box truncation 17 private S57box() { 18 // Hide default constructor for utilities classes 19 } 22 20 // CHECKSTYLE.OFF: LineLength 23 21 -
applications/editors/josm/plugins/seachart/src/s57/S57dat.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 19 11 import s57.S57obj.Obj; 20 12 21 public class S57dat { // S57 ENC file fields lookup tables & methods 13 /** 14 * @author Malcolm Herring 15 */ 16 public final class S57dat { // S57 ENC file fields lookup tables & methods 17 private S57dat() { 18 // Hide default constructor for utilities classes 19 } 22 20 // CHECKSTYLE.OFF: LineLength 23 21 -
applications/editors/josm/plugins/seachart/src/s57/S57dec.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 17 9 import s57.S57map.Nflag; 18 10 19 public class S57dec { // S57 ENC file input & map conversion 11 /** 12 * @author Malcolm Herring 13 */ 14 public final class S57dec { // S57 ENC file input & map conversion 15 private S57dec() { 16 // Hide default constructor for utilities classes 17 } 20 18 // CHECKSTYLE.OFF: LineLength 21 19 -
applications/editors/josm/plugins/seachart/src/s57/S57enc.java
r32394 r32907 1 /* Copyright 2015 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 33 25 import s57.S57val.AttVal; 34 26 35 public class S57enc { // S57 ENC file generation 27 /** 28 * @author Malcolm Herring 29 */ 30 public final class S57enc { // S57 ENC file generation 31 private S57enc() { 32 // Hide default constructor for utilities classes 33 } 36 34 // CHECKSTYLE.OFF: LineLength 37 35 -
applications/editors/josm/plugins/seachart/src/s57/S57map.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 20 12 import s57.S57val.AttVal; 21 13 14 /** 15 * @author Malcolm Herring 16 */ 22 17 public class S57map { // S57/OSM map generation methods 23 18 // CHECKSTYLE.OFF: LineLength -
applications/editors/josm/plugins/seachart/src/s57/S57obj.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 14 6 import java.util.Map; 15 7 16 public class S57obj { // S57 Object lookup tables & methods 8 /** 9 * @author Malcolm Herring 10 */ 11 public final class S57obj { // S57 Object lookup tables & methods 12 private S57obj() { 13 // Hide default constructor for utilities classes 14 } 17 15 // CHECKSTYLE.OFF: LineLength 18 16 -
applications/editors/josm/plugins/seachart/src/s57/S57osm.java
r32394 r32907 1 /* Copyright 2015 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 20 12 import s57.S57val.Conv; 21 13 22 public class S57osm { // OSM to S57 Object/Attribute and Object/Primitive conversions 14 /** 15 * @author Malcolm Herring 16 */ 17 public final class S57osm { // OSM to S57 Object/Attribute and Object/Primitive conversions 18 private S57osm() { 19 // Hide default constructor for utilities classes 20 } 21 23 22 // CHECKSTYLE.OFF: LineLength 24 23 -
applications/editors/josm/plugins/seachart/src/s57/S57val.java
r32394 r32907 1 /* Copyright 2014 Malcolm Herring 2 * 3 * This is free software: you can redistribute it and/or modify 4 * it under the terms of the GNU General Public License as published by 5 * the Free Software Foundation, version 3 of the License. 6 * 7 * For a copy of the GNU General Public License, see <http://www.gnu.org/licenses/>. 8 */ 9 1 // License: GPL. For details, see LICENSE file. 10 2 package s57; 11 3 … … 15 7 import s57.S57att.Att; 16 8 17 public class S57val { // S57 Attribute values lookup tables & methods 9 /** 10 * @author Malcolm Herring 11 */ 12 public final class S57val { // S57 Attribute values lookup tables & methods 13 private S57val() { 14 // Hide default constructor for utilities classes 15 } 16 18 17 // CHECKSTYLE.OFF: LineLength 19 18
Note:
See TracChangeset
for help on using the changeset viewer.
