Changeset 36120 in osm


Ignore:
Timestamp:
2023-08-15T18:00:16+02:00 (17 months ago)
Author:
stoecker
Message:

code cleanup

Location:
applications/editors/josm/plugins/livegps
Files:
9 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/build.xml

    r36107 r36120  
    1717    <import file="../build-common.xml"/>
    1818
     19    <target name="checkstyle" depends="checkstyle-compile">
     20        <taskdef resource="com/puppycrawl/tools/checkstyle/ant/checkstyle-ant-task.properties">
     21            <classpath refid="checkstyle.classpath"/>
     22            <classpath path="${checkstyle-build.dir}"/>
     23        </taskdef>
     24        <checkstyle config="checkstyle-config.xml">
     25            <fileset dir="${basedir}/src" includes="**/*.java" />
     26            <formatter type="xml" toFile="checkstyle-josm-${ant.project.name}.xml"/>
     27        </checkstyle>
     28    </target>
     29
    1930</project>
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java

    r36117 r36120  
    2424import org.openstreetmap.josm.tools.Logging;
    2525
     26/**
     27 * Acquires NMEA data from a GPSD
     28 */
    2629public class LiveGpsAcquirer implements Runnable {
    2730    private String gpsdHost;
     
    153156
    154157                if (JSONProtocol == true)
    155                     gpsData = ParseJSON(line);
     158                    gpsData = parseJSON(line);
    156159                else
    157                     gpsData = ParseOld(line);
     160                    gpsData = parseOld(line);
    158161
    159162                if (gpsData == null)
     
    278281    }
    279282
    280     private LiveGpsData ParseJSON(String line) {
     283    private LiveGpsData parseJSON(String line) {
    281284        JsonObject report;
    282285        double lat, lon;
     
    319322    }
    320323
    321     private LiveGpsData ParseOld(String line) {
     324    private LiveGpsData parseOld(String line) {
    322325        String[] words;
    323326        double lat = 0;
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirerNMEA.java

    r36117 r36120  
    142142                    int c = serReader.read();
    143143                    if (c == '$') {
    144                         Logging.trace("Parsing NMEA: " + sb.toString().replaceAll("[\r\n]",""));
     144                        Logging.trace("Parsing NMEA: " + sb.toString().replaceAll("[\r\n]", ""));
    145145                        parser.parseNMEASentence(sb.toString());
    146146                        sb.delete(0, sb.length());
     
    155155                        Collection<WayPoint> wpts = parser.getAndDropWaypoints();
    156156                        for (WayPoint w : wpts) {
    157                             if(w.getInstant() == null)
     157                            if (w.getInstant() == null)
    158158                                continue;
    159159                            if (w.getInstant().equals(lasttime)) {
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsData.java

    r36117 r36120  
    44import static org.openstreetmap.josm.tools.I18n.tr;
    55
    6 import java.awt.Point;
    76import java.text.DecimalFormat;
    87
     
    1413import org.openstreetmap.josm.data.osm.IWay;
    1514import org.openstreetmap.josm.data.osm.Node;
    16 import org.openstreetmap.josm.data.osm.OsmPrimitive;
    1715import org.openstreetmap.josm.data.osm.Way;
    1816import org.openstreetmap.josm.data.osm.WaySegment;
    1917import org.openstreetmap.josm.gui.MainApplication;
    20 import org.openstreetmap.josm.gui.MapFrame;
    2118import org.openstreetmap.josm.spi.preferences.Config;
    2219import org.openstreetmap.josm.tools.Geometry;
     
    3330    private float epx, epy;
    3431    private String wayString;
    35     private WayPoint wp;
     32    private WayPoint waypoint;
    3633    private static final DecimalFormat offsetFormat = new DecimalFormat("0.00");
    3734
     
    5754     */
    5855    public WayPoint getWaypoint() {
    59         return this.wp;
     56        return this.waypoint;
    6057    }
    6158
    6259    /**
    6360     * Set the waypoint to transfer additional data form NMEA input
    64      * @param wp waypoint to set
    65      */
    66     public void setWaypoint(WayPoint wp) {
    67         this.wp = wp;
     61     * @param waypoint waypoint to set
     62     */
     63    public void setWaypoint(WayPoint waypoint) {
     64        this.waypoint = waypoint;
    6865    }
    6966
     
    186183                     protected void decorateNameWithId(StringBuilder name, IPrimitive primitive) {
    187184                     }
     185
    188186                     @Override
    189187                     protected void decorateNameWithNodes(StringBuilder name, IWay way) {
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsDialog.java

    r36117 r36120  
    140140            public void run() {
    141141                /* prevent flickering - skip the connecting message when NMEA input is working */
    142                 if (!(oldStatus.getStatus() == LiveGpsStatus.GpsStatus.CONNECTION_FAILED && status.getStatus() == LiveGpsStatus.GpsStatus.CONNECTING && nmeaStatus.getStatus() == LiveGpsStatus.GpsStatus.CONNECTED))
     142                if (!(oldStatus.getStatus() == LiveGpsStatus.GpsStatus.CONNECTION_FAILED
     143                && status.getStatus() == LiveGpsStatus.GpsStatus.CONNECTING
     144                && nmeaStatus.getStatus() == LiveGpsStatus.GpsStatus.CONNECTED))
    143145                    statusLabel.setText(status.getStatusMessage());
    144                 if (status.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED && nmeaStatus.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED) {
     146                if (status.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED
     147                && nmeaStatus.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED) {
    145148                    panel.setBackground(Color.RED);
    146149                } else {
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsDrawHelper.java

    r36117 r36120  
    1414import org.openstreetmap.josm.spi.preferences.Config;
    1515
     16/**
     17 * Painting the LiveGPS data layer, especially the current position arrow
     18 */
    1619public class LiveGpsDrawHelper extends GpxDrawHelper {
    1720    private final LiveGpsLayer layer;
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java

    r36117 r36120  
    2222import org.openstreetmap.josm.spi.preferences.Config;
    2323
     24/**
     25 * The LiveGPS layer
     26 */
    2427public class LiveGpsLayer extends GpxLayer implements PropertyChangeListener {
    2528    public static final String LAYER_NAME = tr("LiveGPS layer");
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java

    r36117 r36120  
    2929import org.openstreetmap.josm.tools.Shortcut;
    3030
     31/**
     32 * Main LiveGPS plugin class
     33 */
    3134public class LiveGpsPlugin extends Plugin implements LayerChangeListener {
    3235    private boolean enabled = false;
  • applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java

    r35221 r36120  
    1111import org.openstreetmap.josm.data.gpx.WithAttributes;
    1212
     13/**
     14 * LiveGPS track which gets step by step expanded with new data
     15 */
    1316public class SingleSegmentGpxTrack extends WithAttributes implements IGpxTrack {
    1417
Note: See TracChangeset for help on using the changeset viewer.