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

checkstyle

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/seachart/src/symbols/Areas.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 symbols;
    113
     
    2618import symbols.Symbols.Symbol;
    2719
    28 public class Areas {
     20/**
     21 * @author Malcolm Herring
     22 */
     23public final class Areas {
     24    private Areas() {
     25        // Hide default constructor for utilities classes
     26    }
     27
    2928    // CHECKSTYLE.OFF: LineLength
    3029    public static final Symbol Plane = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Beacons.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 symbols;
    113
     
    2517import symbols.Symbols.Symbol;
    2618
    27 public class Beacons {
     19/**
     20 * @author Malcolm Herring
     21 */
     22public final class Beacons {
     23    private Beacons() {
     24        // Hide default constructor for utilities classes
     25    }
     26
    2827    // CHECKSTYLE.OFF: LineLength
    2928    public static final Symbol Beacon = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Buoys.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 symbols;
    113
     
    2315import symbols.Symbols.Symbol;
    2416
    25 public class Buoys {
     17/**
     18 * @author Malcolm Herring
     19 */
     20public final class Buoys {
     21    private Buoys() {
     22        // Hide default constructor for utilities classes
     23    }
     24
    2625    // CHECKSTYLE.OFF: LineLength
    2726    public static final Symbol Barrel = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Facilities.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 symbols;
    113
     
    2618import symbols.Symbols.Symbol;
    2719
    28 public class Facilities {
     20/**
     21 * @author Malcolm Herring
     22 */
     23public final class Facilities {
     24    private Facilities() {
     25        // Hide default constructor for utilities classes
     26    }
     27
    2928    // CHECKSTYLE.OFF: LineLength
    3029    private static final Symbol Facility = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Harbours.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 symbols;
    113
     
    2416import symbols.Symbols.Symbol;
    2517
    26 public class Harbours {
     18/**
     19 * @author Malcolm Herring
     20 */
     21public final class Harbours {
     22    private Harbours() {
     23        // Hide default constructor for utilities classes
     24    }
     25
    2726    // CHECKSTYLE.OFF: LineLength
    2827    public static final Symbol Anchor = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Landmarks.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 symbols;
    113
     
    2416import symbols.Symbols.Symbol;
    2517
    26 public class Landmarks {
     18/**
     19 * @author Malcolm Herring
     20 */
     21public final class Landmarks {
     22    private Landmarks() {
     23        // Hide default constructor for utilities classes
     24    }
     25
    2726    // CHECKSTYLE.OFF: LineLength
    2827    private static final Symbol Base = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Notices.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 symbols;
    113
     
    3527import symbols.Symbols.Symbol;
    3628
    37 public class Notices {
     29/**
     30 * @author Malcolm Herring
     31 */
     32public final class Notices {
     33    private Notices() {
     34        // Hide default constructor for utilities classes
     35    }
     36
    3837    // CHECKSTYLE.OFF: LineLength
    3938    private static final Symbol Bollard = new Symbol();
  • applications/editors/josm/plugins/seachart/src/symbols/Symbols.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 symbols;
    113
     
    2517import java.util.ArrayList;
    2618
    27 public class Symbols {
     19/**
     20 * @author Malcolm Herring
     21 */
     22public final class Symbols {
     23    private Symbols() {
     24        // Hide default constructor for utilities classes
     25    }
     26
    2827    // CHECKSTYLE.OFF: LineLength
    2928    public static final Color Yland = new Color(0xedbc0c);
  • applications/editors/josm/plugins/seachart/src/symbols/Topmarks.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 symbols;
    113
     
    2820import symbols.Symbols.Symbol;
    2921
    30 public class Topmarks {
     22/**
     23 * @author Malcolm Herring
     24 */
     25public final class Topmarks {
     26
     27    private Topmarks() {
     28        // Hide default constructor for utilities classes
     29    }
     30
    3131    // CHECKSTYLE.OFF: LineLength
    3232    public static final Symbol RadarReflector = new Symbol();
Note: See TracChangeset for help on using the changeset viewer.