Changeset 9665 in josm for trunk/src/org
- Timestamp:
- 2016-01-29T09:52:51+01:00 (9 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/downloadtasks/DownloadOsmChangeCompressedTask.java
r7937 r9665 27 27 return tr("Download Compressed OSM Change"); 28 28 } 29 29 30 30 /** 31 31 * Loads a given URL -
trunk/src/org/openstreetmap/josm/data/osm/Filter.java
r9113 r9665 9 9 /** 10 10 * Data class representing one entry in the filter dialog. 11 * 11 * 12 12 * @author Petr_Dlouhý 13 13 */ -
trunk/src/org/openstreetmap/josm/data/osm/FilterWorker.java
r9113 r9665 10 10 /** 11 11 * Class for applying {@link Filter}s to {@link OsmPrimitive}s. 12 * 12 * 13 13 * Provides a bridge between Filter GUI and the data. 14 * 14 * 15 15 * @author Petr_Dlouhý 16 16 */ … … 63 63 /** 64 64 * Apply the filters to a single primitive. 65 * 66 * @param primitive the primitive 65 * 66 * @param primitive the primitive 67 67 * @param filterMatcher the FilterMatcher 68 68 * @return true, if the filter state (normal / disabled / hidden) -
trunk/src/org/openstreetmap/josm/data/osm/visitor/BoundingXYVisitor.java
r9101 r9665 137 137 bounds = new ProjectionBounds( 138 138 Main.getProjection().latlon2eastNorth(new LatLon( 139 Math.max(-90, minLatlon.lat() - enlargeDegree), 139 Math.max(-90, minLatlon.lat() - enlargeDegree), 140 140 Math.max(-180, minLatlon.lon() - enlargeDegree))), 141 141 Main.getProjection().latlon2eastNorth(new LatLon( -
trunk/src/org/openstreetmap/josm/gui/preferences/DefaultPreferenceSetting.java
r7937 r9665 5 5 6 6 private final boolean isExpert; 7 7 8 8 public DefaultPreferenceSetting() { 9 9 this(false); -
trunk/src/org/openstreetmap/josm/gui/preferences/imagery/AddImageryDialog.java
r7937 r9665 15 15 */ 16 16 public class AddImageryDialog extends ExtendedDialog implements ContentValidationListener { 17 17 18 18 /** 19 19 * Constructs a new AddImageryDialog. -
trunk/src/org/openstreetmap/josm/gui/preferences/server/ProxyPreference.java
r7937 r9665 30 30 31 31 private static Set<ProxyPreferenceListener> listeners = new HashSet<>(); 32 32 33 33 private ProxyPreferencesPanel pnlProxyPreferences; 34 34 … … 63 63 return gui.getServerPreference(); 64 64 } 65 65 66 66 /** 67 67 * Adds a new ProxyPreferenceListener. -
trunk/src/org/openstreetmap/josm/gui/progress/ProgressMonitorExecutor.java
r8734 r9665 11 11 /** 12 12 * Executor that displays the progress monitor to the user. 13 * 13 * 14 14 * Similar to Executors.newSingleThreadExecutor(), but displays the 15 15 * progress monitor whenever a new task is executed. -
trunk/src/org/openstreetmap/josm/gui/util/CursorManager.java
r8556 r9665 11 11 * This class manages multiple cursors for multiple components. 12 12 * All components share the same cursor that was last set using {@link #setNewCursor(Cursor, Object)} 13 * 13 * 14 14 * @author Michael Zangl 15 15 */
Note:
See TracChangeset
for help on using the changeset viewer.