Ignore:
Timestamp:
2016-10-30T00:14:07+02:00 (8 years ago)
Author:
donvip
Message:

checkstyle

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

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/livegps/src/livegps/AppendableGpxTrackSegment.java

    r30737 r33045  
     1// License: Public Domain. For details, see LICENSE file.
    12package livegps;
    23
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsAcquirer.java

    r32952 r33045  
     1// License: Public Domain. For details, see LICENSE file.
    12package livegps;
    23
     
    132133                        Thread.sleep(1000);
    133134                    } catch (InterruptedException ignore) {
    134                        
     135
    135136                    }
    136137                }
     
    161162                oldGpsData = gpsData;
    162163            } catch (IOException iox) {
    163                 Main.warn("LiveGps: lost connection to gpsd");
     164                Main.warn(iox, "LiveGps: lost connection to gpsd");
    164165                fireGpsStatusChangeEvent(
    165166                        LiveGpsStatus.GpsStatus.CONNECTION_FAILED,
     
    168169                try {
    169170                    Thread.sleep(1000);
    170                 } catch (InterruptedException ignore) {}
     171                } catch (InterruptedException ignore) {
     172                    Main.trace(ignore);
     173                }
    171174                // send warning to layer
    172175            }
     
    246249
    247250    private void disconnect() {
    248         assert(gpsdSocket != null);
     251        assert gpsdSocket != null;
    249252
    250253        connected = false;
     
    324327                        speed = Float.parseFloat(status[9]);
    325328                        course = Float.parseFloat(status[8]);
    326                     } catch (NumberFormatException nex) {}
     329                    } catch (NumberFormatException nex) {
     330                        Main.debug(nex);
     331                    }
    327332                    return new LiveGpsData(lat, lon, course, speed);
    328333                }
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsData.java

    r32952 r33045  
    1 /**
    2  *
    3  */
     1// License: Public Domain. For details, see LICENSE file.
    42package livegps;
    53
     
    151149     */
    152150    public String getWayInfo() {
    153         if(wayString == null) {
     151        if (wayString == null) {
    154152            Way way = getWay();
    155             if(way != null) {
     153            if (way != null) {
    156154                StringBuilder builder = new StringBuilder();
    157155                String tmp = way.get("name");
    158                 if(tmp != null) {
     156                if (tmp != null) {
    159157                    builder.append(tmp);
    160158                } else {
     
    162160                }
    163161                tmp = way.get("ref");
    164                 if(tmp != null) {
     162                if (tmp != null) {
    165163                    builder.append(" (").append(tmp).append(")");
    166164                }
    167165                tmp = way.get("highway");
    168                 if(tmp != null) {
     166                if (tmp != null) {
    169167                    builder.append(" {").append(tmp).append("}");
    170168                }
    171169                String type = "";
    172170                tmp = way.get("tunnel");
    173                 if(tmp != null) {
     171                if (tmp != null) {
    174172                    type = type + "T";
    175173                }
    176174                tmp = way.get("bridge");
    177                 if(tmp != null) {
     175                if (tmp != null) {
    178176                    type = type + "B";
    179177                }
    180                 if(type.length() > 0) {
     178                if (type.length() > 0) {
    181179                    builder.append(" [").append(type).append("]");
    182180                }
     
    194192     */
    195193    public Way getWay() {
    196         if(way == null && Main.map != null && Main.map.mapView != null) {
     194        if (way == null && Main.map != null && Main.map.mapView != null) {
    197195            Point xy = Main.map.mapView.getPoint(getLatLon());
    198196            way = Main.map.mapView.getNearestWay(xy, OsmPrimitive::isUsable);
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsDialog.java

    r32952 r33045  
    1 /**
    2  *
    3  */
     1// License: Public Domain. For details, see LICENSE file.
    42package livegps;
    53
     
    6967            return;
    7068
    71         if("gpsdata".equals(evt.getPropertyName())) {
     69        if ("gpsdata".equals(evt.getPropertyName())) {
    7270            data = (LiveGpsData) evt.getNewValue();
    7371
     
    7573            @Override
    7674            public void run() {
    77                 if(data.isFix()) {
     75                if (data.isFix()) {
    7876                    panel.setBackground(Color.WHITE);
    7977                    latLabel.setText(data.getLatitude() + "deg");
     
    8482
    8583                    String wayString = data.getWayInfo();
    86                     if(wayString.length() > 0) {
     84                    if (!wayString.isEmpty()) {
    8785                        wayLabel.setText(wayString);
    8886                    } else {
     
    104102            public void run() {
    105103                statusLabel.setText(status.getStatusMessage());
    106                 if(status.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED) {
     104                if (status.getStatus() != LiveGpsStatus.GpsStatus.CONNECTED) {
    107105                    panel.setBackground(Color.RED);
    108106                } else {
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsLayer.java

    r32952 r33045  
     1// License: Public Domain. For details, see LICENSE file.
    12package livegps;
    23
     
    67import java.awt.Graphics2D;
    78import java.awt.Point;
     9import java.awt.Rectangle;
    810import java.awt.geom.Point2D;
    9 import java.awt.Rectangle;
    1011import java.beans.PropertyChangeEvent;
    1112import java.beans.PropertyChangeListener;
     
    115116        if (lastPoint == null)
    116117            return;
    117    
     118
    118119        Point screen = mv.getPoint(lastPoint.getCoor());
    119    
     120
    120121        int TriaHeight = Main.pref.getInteger(C_CURSOR_H, 20);
    121122        int TriaWidth = Main.pref.getInteger(C_CURSOR_W, 10);
    122123        int TriaThick = Main.pref.getInteger(C_CURSOR_T, 4);
    123    
     124
    124125        /*
    125126         * Draw a bold triangle.
    126127         * In case of deep zoom draw also a thin DOP oval.
    127128         */
    128    
     129
    129130        g.setColor(COLOR_POSITION_ESTIMATE.get());
    130131        int w, h;
    131132        double ppm = 100 / mv.getDist100Pixel();    /* pixels per metre */
    132    
     133
    133134        w = (int )Math.round(lastData.getEpx() * ppm);
    134135        h = (int )Math.round(lastData.getEpy() * ppm);
    135    
     136
    136137        if (w > TriaWidth || h > TriaWidth) {
    137138            int xo, yo;
    138    
     139
    139140            yo = screen.y - Math.round(h/2);
    140141            xo = screen.x - Math.round(w/2);
    141    
     142
    142143            g.drawOval(xo, yo, w, h);
    143144        }
    144    
     145
    145146        int[] x = new int[4];
    146147        int[] y = new int[4];
     
    152153        float csin240 = (float )Math.sin(Math.toRadians(course + 240));
    153154        float ccos240 = (float )Math.cos(Math.toRadians(course + 240));
    154    
     155
    155156        g.setColor(COLOR_POSITION.get());
    156    
     157
    157158        for (int i = 0; i < TriaThick; i++, TriaHeight--, TriaWidth--) {
    158    
     159
    159160            x[0] = screen.x + Math.round(TriaHeight * csin);
    160161            y[0] = screen.y - Math.round(TriaHeight * ccos);
     
    165166            x[3] = screen.x + Math.round(TriaWidth * csin240);
    166167            y[3] = screen.y - Math.round(TriaWidth * ccos240);
    167    
     168
    168169            g.drawPolygon(x, y, 4);
    169170        }
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsPlugin.java

    r32470 r33045  
     1// License: Public Domain. For details, see LICENSE file.
    12package livegps;
    23
     
    117118        MainMenu menu = Main.main.menu;
    118119        lgpsmenu = menu.gpsMenu;
    119         if (lgpsmenu.getItemCount()>0) {
     120        if (lgpsmenu.getItemCount() > 0) {
    120121            lgpsmenu.addSeparator();
    121122        }
    122            
     123
    123124        JosmAction captureAction = new CaptureAction();
    124125        lgpscapture = new JCheckBoxMenuItem(captureAction);
    125126        lgpsmenu.add(lgpscapture);
    126127        lgpscapture.setAccelerator(captureAction.getShortcut().getKeyStroke());
    127        
     128
    128129        JosmAction centerAction = new CenterAction();
    129130        MainMenu.add(lgpsmenu, centerAction);
    130        
     131
    131132        JosmAction autoCenterAction = new AutoCenterAction();
    132133        lgpsautocenter = new JCheckBoxMenuItem(autoCenterAction);
     
    162163     */
    163164    public void enableTracking(boolean enable) {
    164    
     165
    165166        if (enable && !enabled) {
    166167            assert (acquirer == null);
     
    199200    }
    200201
    201     /** 
    202      * Add a listener for gps events. 
    203      * @param listener the listener. 
    204      */ 
    205     public void addPropertyChangeListener(PropertyChangeListener listener) { 
    206         assert(!listenerQueue.contains(listener));
    207 
    208         listenerQueue.add(listener); 
     202    /**
     203     * Add a listener for gps events.
     204     * @param listener the listener.
     205     */
     206    public void addPropertyChangeListener(PropertyChangeListener listener) {
     207        assert !listenerQueue.contains(listener);
     208
     209        listenerQueue.add(listener);
    209210        if (acquirer != null)
    210             acquirer.addPropertyChangeListener(listener); 
    211     } 
    212 
    213     /** 
    214      * Remove a listener for gps events. 
    215      * @param listener the listener. 
    216      */ 
    217     public void removePropertyChangeListener(PropertyChangeListener listener) { 
    218         assert(listenerQueue.contains(listener));
    219 
    220         listenerQueue.remove(listener); 
    221         if (acquirer != null) 
    222             acquirer.removePropertyChangeListener(listener); 
     211            acquirer.addPropertyChangeListener(listener);
     212    }
     213
     214    /**
     215     * Remove a listener for gps events.
     216     * @param listener the listener.
     217     */
     218    public void removePropertyChangeListener(PropertyChangeListener listener) {
     219        assert listenerQueue.contains(listener);
     220
     221        listenerQueue.remove(listener);
     222        if (acquirer != null)
     223            acquirer.removePropertyChangeListener(listener);
    223224    }
    224225
  • applications/editors/josm/plugins/livegps/src/livegps/LiveGpsStatus.java

    r14057 r33045  
    1 /**
    2  *
    3  */
     1// License: Public Domain. For details, see LICENSE file.
    42package livegps;
    53
  • applications/editors/josm/plugins/livegps/src/livegps/SingleSegmentGpxTrack.java

    r33009 r33045  
     1// License: Public Domain. For details, see LICENSE file.
    12package livegps;
    23
Note: See TracChangeset for help on using the changeset viewer.