Ignore:
Timestamp:
2017-05-27T22:56:30+02:00 (7 years ago)
Author:
stoecker
Message:

checkstyle fixes

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/wms-turbo-challenge2/src/wmsturbochallenge/FakeMapView.java

    r32914 r33342  
    11/*
    22 * GPLv2 or 3, Copyright (c) 2010  Andrzej Zaborowski
    3  *
     3 */
     4package wmsturbochallenge;
     5
     6import java.awt.Graphics;
     7import java.awt.Graphics2D;
     8import java.awt.Point;
     9import java.awt.image.BufferedImage;
     10
     11import org.openstreetmap.josm.data.ProjectionBounds;
     12import org.openstreetmap.josm.data.coor.EastNorth;
     13import org.openstreetmap.josm.gui.MapView;
     14
     15/**
    416 * Implements a fake MapView that we can pass to WMSLayer's .paint,
    517 * this will give us two things:
     
    1426 *    this happened and could only guess.
    1527 */
    16 package wmsturbochallenge;
    17 
    18 import java.awt.Graphics;
    19 import java.awt.Graphics2D;
    20 import java.awt.Point;
    21 import java.awt.image.BufferedImage;
    22 
    23 import org.openstreetmap.josm.data.ProjectionBounds;
    24 import org.openstreetmap.josm.data.coor.EastNorth;
    25 import org.openstreetmap.josm.gui.MapView;
    26 
    2728class FakeMapView extends MapView {
    2829    public ProjectionBounds view_bounds;
     
    3637    public double max_east_west;
    3738
    38     public FakeMapView(MapView parent, double scale) {
    39         super(null, null, null); //TODO MapView constructor contains registering listeners and other code, that probably shouldn't be called in fake map view
     39    FakeMapView(MapView parent, double scale) {
     40        // TODO: MapView constructor contains registering listeners and other code, that probably shouldn't be called in fake map view
     41        super(null, null, null);
    4042        this.parent = parent;
    4143        this.scale = scale;
Note: See TracChangeset for help on using the changeset viewer.