Changeset 33078 in osm for applications


Ignore:
Timestamp:
2016-11-20T12:38:12+01:00 (8 years ago)
Author:
donvip
Message:

checkstyle

Location:
applications/editors/josm/plugins/livegps
Files:
1 added
7 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/.project

    r32286 r33078  
    1616                        </arguments>
    1717                </buildCommand>
     18                <buildCommand>
     19                        <name>net.sf.eclipsecs.core.CheckstyleBuilder</name>
     20                        <arguments>
     21                        </arguments>
     22                </buildCommand>
    1823        </buildSpec>
    1924        <natures>
    2025                <nature>org.eclipse.jdt.core.javanature</nature>
     26                <nature>net.sf.eclipsecs.core.CheckstyleNature</nature>
    2127        </natures>
    2228</projectDescription>
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java

    r33045 r33078  
    129129                    connect();
    130130                } catch (IOException iox) {
    131                     fireGpsStatusChangeEvent( LiveGpsStatus.GpsStatus.CONNECTION_FAILED, tr("Connection Failed"));
     131                    fireGpsStatusChangeEvent(LiveGpsStatus.GpsStatus.CONNECTION_FAILED, tr("Connection Failed"));
    132132                    try {
    133133                        Thread.sleep(1000);
    134134                    } catch (InterruptedException ignore) {
    135 
     135                        Main.trace(ignore);
    136136                    }
    137137                }
     
    191191
    192192        Main.info("LiveGps: trying to connect to gpsd at " + gpsdHost + ":" + gpsdPort);
    193         fireGpsStatusChangeEvent( LiveGpsStatus.GpsStatus.CONNECTING, tr("Connecting"));
     193        fireGpsStatusChangeEvent(LiveGpsStatus.GpsStatus.CONNECTING, tr("Connecting"));
    194194
    195195        InetAddress[] addrs = InetAddress.getAllByName(gpsdHost);
     
    210210         * First emit the "w" symbol. The older version will activate, the newer one will ignore it.
    211211         */
    212         gpsdSocket.getOutputStream().write(new byte[] { 'w', 13, 10 });
     212        gpsdSocket.getOutputStream().write(new byte[] {'w', 13, 10});
    213213
    214214        gpsdReader = new BufferedReader(new InputStreamReader(gpsdSocket.getInputStream(), StandardCharsets.UTF_8));
     
    287287
    288288        if (speedJson != null)
    289             speed = (float )speedJson.doubleValue();
     289            speed = (float) speedJson.doubleValue();
    290290        if (trackJson != null)
    291             course = (float )trackJson.doubleValue();
     291            course = (float) trackJson.doubleValue();
    292292        if (epxJson != null)
    293             epx = (float )epxJson.doubleValue();
     293            epx = (float) epxJson.doubleValue();
    294294        if (epyJson != null)
    295             epy = (float )epyJson.doubleValue();
     295            epy = (float) epyJson.doubleValue();
    296296
    297297        return new LiveGpsData(lat, lon, course, speed, epx, epy);
     
    299299
    300300    private LiveGpsData ParseOld(String line) {
    301         String words[];
     301        String[] words;
    302302        double lat = 0;
    303303        double lon = 0;
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsData.java

    r33045 r33078  
    2424    private Way way;
    2525
    26     /**
    27      * @param latitude
    28      * @param longitude
    29      * @param course
    30      * @param speed
    31      * @param haveFix
    32      */
    3326    public LiveGpsData(double latitude, double longitude, float course, float speed) {
    34         super();
    3527        this.fix = true;
    3628        this.latLon = new LatLon(latitude, longitude);
     
    3830        this.speed = speed;
    3931    }
    40     /**
    41      * @param latitude
    42      * @param longitude
    43      * @param course
    44      * @param speed
    45      * @param haveFix
    46      * @param epx
    47      * @param epy
    48      */
     32
    4933    public LiveGpsData(double latitude, double longitude, float course, float speed, float epx, float epy) {
    50         super();
    5134        this.fix = true;
    5235        this.latLon = new LatLon(latitude, longitude);
     
    6346        return this.course;
    6447    }
     48
    6549    /**
    6650     * @param course the course to set
     
    6953        this.course = course;
    7054    }
     55
    7156    /**
    7257     * @return the haveFix
     
    7560        return this.fix;
    7661    }
     62
    7763    /**
    7864     * @param haveFix the haveFix to set
     
    8167        this.fix = haveFix;
    8268    }
     69
    8370    /**
    8471     * @return the latitude
     
    8774        return this.latLon.lat();
    8875    }
     76
    8977    /**
    9078     * @return the longitude
     
    9381        return this.latLon.lon();
    9482    }
     83
    9584    /**
    9685     * @return the speed in metres per second!
     
    9988        return this.speed;
    10089    }
     90
    10191    /**
    10292     * @param speed the speed to set
     
    113103    }
    114104
    115     /**
    116      * @param latLon
    117      */
    118105    public void setLatLon(LatLon latLon) {
    119106        this.latLon = latLon;
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsDialog.java

    r33045 r33078  
    3434    private LiveGpsData data;
    3535
    36     /**
    37      * @param name
    38      * @param iconName
    39      * @param tooltip
    40      * @param shortcut
    41      * @param preferredHeight
    42      */
    4336    public LiveGpsDialog(final MapFrame mapFrame) {
    4437        super(tr("Live GPS"), "livegps", tr("Show GPS data."),
     
    4639        KeyEvent.VK_G, Shortcut.ALT_CTRL_SHIFT), 100);
    4740        panel = new JPanel();
    48         panel.setLayout(new GridLayout(6,2));
     41        panel.setLayout(new GridLayout(6, 2));
    4942        panel.add(new JLabel(tr("Status")));
    5043        panel.add(statusLabel = new JLabel());
     
    9487                    panel.setBackground(Color.RED);
    9588                }
    96             }});
     89            } });
    9790        } else if ("gpsstatus".equals(evt.getPropertyName())) {
    9891            status = (LiveGpsStatus) evt.getNewValue();
     
    107100                    panel.setBackground(Color.WHITE);
    108101                }
    109             }});
     102            } });
    110103        }
    111104    }
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java

    r33045 r33078  
    3232    public static final String C_LIVEGPS_COLOR_POSITION_ESTIMATE = "color.livegps.position_estimate";
    3333
    34     private static final CachingProperty<Color> COLOR_POSITION = new ColorProperty(C_LIVEGPS_COLOR_POSITION_ESTIMATE, Color.RED).cached();
    35     private static final CachingProperty<Color> COLOR_POSITION_ESTIMATE = new ColorProperty(C_LIVEGPS_COLOR_POSITION_ESTIMATE, Color.CYAN).cached();
     34    private static final CachingProperty<Color> COLOR_POSITION =
     35            new ColorProperty(C_LIVEGPS_COLOR_POSITION_ESTIMATE, Color.RED).cached();
     36    private static final CachingProperty<Color> COLOR_POSITION_ESTIMATE =
     37            new ColorProperty(C_LIVEGPS_COLOR_POSITION_ESTIMATE, Color.CYAN).cached();
    3638
    3739    private static final int DEFAULT_REFRESH_INTERVAL = 250;
     
    98100        long current = date.getTime();
    99101
    100         rv.grow(-(int)(rv.getHeight() * centerFactor), -(int)(rv.getWidth() * centerFactor));
     102        rv.grow(-(int) (rv.getHeight() * centerFactor), -(int) (rv.getWidth() * centerFactor));
    101103
    102104        if (!rv.contains(P) || (centerInterval > 0 && current - lastCenter >= centerInterval)) {
     
    132134        double ppm = 100 / mv.getDist100Pixel();    /* pixels per metre */
    133135
    134         w = (int )Math.round(lastData.getEpx() * ppm);
    135         h = (int )Math.round(lastData.getEpy() * ppm);
     136        w = (int) Math.round(lastData.getEpx() * ppm);
     137        h = (int) Math.round(lastData.getEpy() * ppm);
    136138
    137139        if (w > TriaWidth || h > TriaWidth) {
     
    147149        int[] y = new int[4];
    148150        float course = lastData.getCourse();
    149         float csin = (float )Math.sin(Math.toRadians(course));
    150         float ccos = (float )Math.cos(Math.toRadians(course));
    151         float csin120 = (float )Math.sin(Math.toRadians(course + 120));
    152         float ccos120 = (float )Math.cos(Math.toRadians(course + 120));
    153         float csin240 = (float )Math.sin(Math.toRadians(course + 240));
    154         float ccos240 = (float )Math.cos(Math.toRadians(course + 240));
     151        float csin = (float) Math.sin(Math.toRadians(course));
     152        float ccos = (float) Math.cos(Math.toRadians(course));
     153        float csin120 = (float) Math.sin(Math.toRadians(course + 120));
     154        float ccos120 = (float) Math.cos(Math.toRadians(course + 120));
     155        float csin240 = (float) Math.sin(Math.toRadians(course + 240));
     156        float ccos240 = (float) Math.cos(Math.toRadians(course + 240));
    155157
    156158        g.setColor(COLOR_POSITION.get());
     
    223225            Main.pref.putInteger(C_REFRESH_INTERVAL, refreshInterval);
    224226            Main.pref.putInteger(C_CENTER_INTERVAL, centerInterval);
    225         Main.pref.putInteger(C_CENTER_FACTOR, (int )centerFactor);
     227        Main.pref.putInteger(C_CENTER_FACTOR, (int) centerFactor);
    226228
    227229        /*
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java

    r33045 r33078  
    180180            acquirer.addPropertyChangeListener(lgpslayer);
    181181            acquirer.addPropertyChangeListener(lgpsdialog);
    182             for (PropertyChangeListener listener : listenerQueue)
     182            for (PropertyChangeListener listener : listenerQueue) {
    183183                acquirer.addPropertyChangeListener(listener);
     184            }
    184185
    185186            acquirerThread.start();
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsStatus.java

    r33045 r33078  
    77 */
    88public class LiveGpsStatus {
    9     public enum GpsStatus {CONNECTING, CONNECTED, DISCONNECTED, CONNECTION_FAILED};
     9    public enum GpsStatus {
     10        CONNECTING, CONNECTED, DISCONNECTED, CONNECTION_FAILED
     11    }
     12
    1013    private String statusMessage;
    1114    private GpsStatus status;
    1215
    13     /**
    14      * @param status
    15      * @param statusMessage
    16      */
    1716    public LiveGpsStatus(GpsStatus status, String statusMessage) {
    1817        super();
     
    2019        this.statusMessage = statusMessage;
    2120    }
    22 /**
     21
     22    /**
    2323     * @return the status
    2424     */
     
    2626        return this.status;
    2727    }
     28
    2829    /**
    2930     * @param status the status to set
     
    3233        this.status = status;
    3334    }
     35
    3436    /**
    3537     * @return the statusMessage
     
    3840        return this.statusMessage;
    3941    }
     42
    4043    /**
    4144     * @param statusMessage the statusMessage to set
Note: See TracChangeset for help on using the changeset viewer.