Ignore:
Timestamp:
2016-09-03T16:43:42+02:00 (9 years ago)
Author:
donvip
Message:

checkstyle

Location:
applications/editors/josm/plugins/seachart/src/s57
Files:
9 edited

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.
    102package s57;
    113
     
    157import s57.S57obj.Obj;
    168
    17 public class S57att { // S57 Attribute lookup tables & methods
     9/**
     10 * @author Malcolm Herring
     11 */
     12public final class S57att { // S57 Attribute lookup tables & methods
     13    private S57att() {
     14        // Hide default constructor for utilities classes
     15    }
    1816    // CHECKSTYLE.OFF: LineLength
    1917
  • 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.
    102package s57;
    113
     
    1911import s57.S57obj.Obj;
    2012
    21 public class S57box { //S57 bounding box truncation
     13/**
     14 * @author Malcolm Herring
     15 */
     16public final class S57box { //S57 bounding box truncation
     17    private S57box() {
     18        // Hide default constructor for utilities classes
     19    }
    2220    // CHECKSTYLE.OFF: LineLength
    2321
  • 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.
    102package s57;
    113
     
    1911import s57.S57obj.Obj;
    2012
    21 public class S57dat { // S57 ENC file fields lookup tables & methods
     13/**
     14 * @author Malcolm Herring
     15 */
     16public final class S57dat { // S57 ENC file fields lookup tables & methods
     17    private S57dat() {
     18        // Hide default constructor for utilities classes
     19    }
    2220    // CHECKSTYLE.OFF: LineLength
    2321
  • 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.
    102package s57;
    113
     
    179import s57.S57map.Nflag;
    1810
    19 public class S57dec { // S57 ENC file input & map conversion
     11/**
     12 * @author Malcolm Herring
     13 */
     14public final class S57dec { // S57 ENC file input & map conversion
     15    private S57dec() {
     16        // Hide default constructor for utilities classes
     17    }
    2018    // CHECKSTYLE.OFF: LineLength
    2119
  • 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.
    102package s57;
    113
     
    3325import s57.S57val.AttVal;
    3426
    35 public class S57enc { // S57 ENC file generation
     27/**
     28 * @author Malcolm Herring
     29 */
     30public final class S57enc { // S57 ENC file generation
     31    private S57enc() {
     32        // Hide default constructor for utilities classes
     33    }
    3634    // CHECKSTYLE.OFF: LineLength
    3735
  • 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.
    102package s57;
    113
     
    2012import s57.S57val.AttVal;
    2113
     14/**
     15 * @author Malcolm Herring
     16 */
    2217public class S57map { // S57/OSM map generation methods
    2318    // 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.
    102package s57;
    113
     
    146import java.util.Map;
    157
    16 public class S57obj { // S57 Object lookup tables & methods
     8/**
     9 * @author Malcolm Herring
     10 */
     11public final class S57obj { // S57 Object lookup tables & methods
     12    private S57obj() {
     13        // Hide default constructor for utilities classes
     14    }
    1715    // CHECKSTYLE.OFF: LineLength
    1816
  • 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.
    102package s57;
    113
     
    2012import s57.S57val.Conv;
    2113
    22 public class S57osm { // OSM to S57 Object/Attribute and Object/Primitive conversions
     14/**
     15 * @author Malcolm Herring
     16 */
     17public final class S57osm { // OSM to S57 Object/Attribute and Object/Primitive conversions
     18    private S57osm() {
     19        // Hide default constructor for utilities classes
     20    }
     21
    2322    // CHECKSTYLE.OFF: LineLength
    2423
  • 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.
    102package s57;
    113
     
    157import s57.S57att.Att;
    168
    17 public class S57val { // S57 Attribute values lookup tables & methods
     9/**
     10 * @author Malcolm Herring
     11 */
     12public final class S57val { // S57 Attribute values lookup tables & methods
     13    private S57val() {
     14        // Hide default constructor for utilities classes
     15    }
     16
    1817    // CHECKSTYLE.OFF: LineLength
    1918
Note: See TracChangeset for help on using the changeset viewer.