- Timestamp:
- 2019-01-13T15:28:01+01:00 (6 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/actions/ToggleAction.java
r12620 r14695 122 122 * @param e ActionEvent that trigerred the action 123 123 * @see <a href="https://weblogs.java.net/blog/zixle/archive/2005/11/changes_to_acti.html">Changes to Actions in 1.6</a> 124 * @see <a href="http ://docs.oracle.com/javase/6/docs/api/javax/swing/Action.html">Interface Action</a>124 * @see <a href="https://docs.oracle.com/javase/6/docs/api/javax/swing/Action.html">Interface Action</a> 125 125 */ 126 126 protected final void toggleSelectedState(ActionEvent e) { -
trunk/src/org/openstreetmap/josm/gui/MainApplication.java
r14326 r14695 1108 1108 UIManager.put("OptionPane.noIcon", UIManager.get("OptionPane.cancelIcon")); 1109 1109 // Ensures caret color is the same than text foreground color, see #12257 1110 // See http ://docs.oracle.com/javase/8/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html1110 // See https://docs.oracle.com/javase/8/docs/api/javax/swing/plaf/synth/doc-files/componentProperties.html 1111 1111 for (String p : Arrays.asList( 1112 1112 "EditorPane", "FormattedTextField", "PasswordField", "TextArea", "TextField", "TextPane")) { -
trunk/src/org/openstreetmap/josm/gui/util/GuiHelper.java
r14463 r14695 190 190 /** 191 191 * Executes asynchronously a runnable in 192 * <a href="http ://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.192 * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>. 193 193 * @param task The runnable to execute 194 194 * @see SwingUtilities#invokeLater … … 208 208 /** 209 209 * Executes synchronously a runnable in 210 * <a href="http ://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.210 * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>. 211 211 * @param task The runnable to execute 212 212 * @see SwingUtilities#invokeAndWait … … 226 226 /** 227 227 * Executes synchronously a runnable in 228 * <a href="http ://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>.228 * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>. 229 229 * <p> 230 230 * Passes on the exception that was thrown to the thread calling this. … … 248 248 /** 249 249 * Executes synchronously a callable in 250 * <a href="http ://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a>250 * <a href="https://docs.oracle.com/javase/tutorial/uiswing/concurrency/dispatch.html">Event Dispatch Thread</a> 251 251 * and return a value. 252 252 * @param <V> the result type of method <code>call</code> -
trunk/src/org/openstreetmap/josm/tools/I18n.java
r14660 r14695 362 362 // Look up SPI providers first (for JosmDecimalFormatSymbolsProvider). 363 363 // Enable CLDR locale provider on Java 8 to get additional languages, such as Khmer. 364 // http ://docs.oracle.com/javase/8/docs/technotes/guides/intl/enhancements.8.html#cldr364 // https://docs.oracle.com/javase/8/docs/technotes/guides/intl/enhancements.8.html#cldr 365 365 // FIXME: This must be updated after we switch to Java 9. 366 366 // See https://docs.oracle.com/javase/9/docs/api/java/util/spi/LocaleServiceProvider.html -
trunk/src/org/openstreetmap/josm/tools/ImageProvider.java
r14506 r14695 1904 1904 * @return the {@code TransparentColor} defined in image reader metadata, or {@code null} 1905 1905 * @throws IOException if an error occurs during reading 1906 * @see <a href="http ://docs.oracle.com/javase/8/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a>1906 * @see <a href="https://docs.oracle.com/javase/8/docs/api/javax/imageio/metadata/doc-files/standard_metadata.html">javax_imageio_1.0 metadata</a> 1907 1907 * @since 7499 1908 1908 */
Note:
See TracChangeset
for help on using the changeset viewer.