Changeset 655 in josm for trunk/src/org/openstreetmap/josm/tools
- Timestamp:
- 2008-06-15T12:28:42+02:00 (18 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/tools
- Files:
-
- 2 edited
-
AudioPlayer.java (modified) (5 diffs)
-
BugReportExceptionHandler.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/tools/AudioPlayer.java
r627 r655 140 140 /** 141 141 * To get the Url of the playing or recently played audio. 142 * @return surl - could be null142 * @return url - could be null 143 143 */ 144 144 public static URL url() { … … 148 148 /** 149 149 * Whether or not we are paused. 150 * @return sboolean whether or not paused150 * @return boolean whether or not paused 151 151 */ 152 152 public static boolean paused() { … … 156 156 /** 157 157 * Whether or not we are playing. 158 * @return sboolean whether or not playing158 * @return boolean whether or not playing 159 159 */ 160 160 public static boolean playing() { … … 164 164 /** 165 165 * How far we are through playing, in seconds. 166 * @return sdouble seconds166 * @return double seconds 167 167 */ 168 168 public static double position() { … … 172 172 /** 173 173 * Speed at which we will play. 174 * @return sdouble, speed multiplier174 * @return double, speed multiplier 175 175 */ 176 176 public static double speed() { -
trunk/src/org/openstreetmap/josm/tools/BugReportExceptionHandler.java
r627 r655 33 33 34 34 /** 35 * An exception handler ,that ask the user to send a bug report.35 * An exception handler that asks the user to send a bug report. 36 36 * 37 37 * @author imi … … 60 60 int answer = JOptionPane.showConfirmDialog( 61 61 Main.parent, 62 tr("An unexpected exception occurred ,that may come frominthe ''{0}'' plugin.", plugin.info.name)+"\n"+62 tr("An unexpected exception occurred that may have come from the ''{0}'' plugin.", plugin.info.name)+"\n"+ 63 63 (plugin.info.author != null ? tr("According to the information within the plugin, the author is {0}.", plugin.info.author) : "")+"\n"+ 64 64 tr("Should the plugin be disabled?"),
Note:
See TracChangeset
for help on using the changeset viewer.
