Changeset 7980 in josm
- Timestamp:
- 2015-01-23T00:29:13+01:00 (10 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.classpath
r7867 r7980 14 14 <classpathentry kind="lib" path="test/lib/fest/MRJToolkitStubs-1.0.jar"/> 15 15 <classpathentry kind="lib" path="test/lib/jfcunit.jar"/> 16 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.7.0_7 2"/>16 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/jdk1.7.0_76"/> 17 17 <classpathentry exported="true" kind="con" path="GROOVY_SUPPORT"/> 18 18 <classpathentry kind="lib" path="test/lib/unitils-core/commons-collections-3.2.jar"/> -
trunk/.settings/org.eclipse.jdt.core.prefs
r7019 r7980 7 7 org.eclipse.jdt.core.compiler.annotation.nullanalysis=disabled 8 8 org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 9 org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate 9 10 org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 10 11 org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -
trunk/.settings/org.eclipse.jdt.groovy.core.prefs
r6757 r7980 1 1 eclipse.preferences.version=1 2 groovy.compiler.level= -12 groovy.compiler.level=23 -
trunk/src/org/openstreetmap/josm/gui/PleaseWaitRunnable.java
r7636 r7980 42 42 * 43 43 * @param title message for the user 44 * @param ignoreException If true, exception will be propagated to calling code. If false then45 * exception will be thrown directly in EDT. When this runnable is executed using executor framework44 * @param ignoreException If true, exception will be silently ignored. If false then 45 * exception will be handled by showing a dialog. When this runnable is executed using executor framework 46 46 * then use false unless you read result of task (because exception will get lost if you don't) 47 47 */ … … 55 55 * @param parent the parent component for the please wait dialog. Must not be null. 56 56 * @param title message for the user 57 * @param ignoreException If true, exception will be propagated to calling code. If false then58 * exception will be thrown directly in EDT. When this runnable is executed using executor framework57 * @param ignoreException If true, exception will be silently ignored. If false then 58 * exception will be handled by showing a dialog. When this runnable is executed using executor framework 59 59 * then use false unless you read result of task (because exception will get lost if you don't) 60 60 * @throws IllegalArgumentException thrown if parent is null … … 72 72 * @param title message for the user 73 73 * @param progressMonitor progress monitor 74 * @param ignoreException If true, exception will be propagated to calling code. If false then75 * exception will be thrown directly in EDT. When this runnable is executed using executor framework74 * @param ignoreException If true, exception will be silently ignored. If false then 75 * exception will be handled by showing a dialog. When this runnable is executed using executor framework 76 76 * then use false unless you read result of task (because exception will get lost if you don't) 77 77 */
Note:
See TracChangeset
for help on using the changeset viewer.