Changeset 35431 in osm
- Timestamp:
- 2020-05-05T21:13:52+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/poly/src/poly/DownloadPolyTask.java
r34965 r35431 51 51 /** 52 52 * Create new {@link ServerPolyReader} 53 * @param url 53 * @param url the URL 54 54 */ 55 55 public ServerPolyReader(String url) { -
applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintPlugin.java
r34547 r35431 108 108 * 109 109 * @param key the preference key 110 * @param the temporary new int value 110 * @param value the temporary new int value 111 111 */ 112 112 protected static void adjustPref(String key, int value) { … … 123 123 * 124 124 * @param key the preference key 125 * @param the temporary new boolean value 125 * @param value the temporary new boolean value 126 126 */ 127 127 protected static void adjustPref(String key, boolean value) { … … 138 138 * 139 139 * @param key the preference key 140 * @param the temporary new String value 140 * @param value the temporary new String value 141 141 */ 142 142 protected static void adjustPref(String key, String value) { -
applications/editors/josm/plugins/print/src/org/openstreetmap/josm/plugins/print/PrintableMapView.java
r34547 r35431 92 92 /** 93 93 * Get the map scale that will be used for rendering 94 * @return the map scale that will be used for rendering 94 95 */ 95 96 public int getMapScale() { … … 107 108 * main MapView, PageFormat and target resolution 108 109 * 109 * @param page format the size and orientation of the page being drawn110 * @param pageFormat the size and orientation of the page being drawn 110 111 */ 111 112 public void initialize(PageFormat pageFormat) { … … 162 163 * @param page the zero based index of the page to be drawn 163 164 * 164 * @return PAGE_EXISTS for page==0 orNO_SUCH_PAGEforpage>0165 * @return {@code PAGE_EXISTS} for {@code page=0} or {@code NO_SUCH_PAGE} for {@code page>0} 165 166 * 166 167 * @throws PrinterException thrown when the print job is terminated
Note:
See TracChangeset
for help on using the changeset viewer.