Changeset 9249 in josm
- Timestamp:
- 2016-01-01T23:29:36+01:00 (9 years ago)
- Location:
- trunk
- Files:
-
- 2 deleted
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/.settings/org.eclipse.jdt.core.prefs
r9246 r9249 55 55 org.eclipse.jdt.core.compiler.problem.missingJavadocTags=warning 56 56 org.eclipse.jdt.core.compiler.problem.missingJavadocTagsMethodTypeParameters=enabled 57 org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding= disabled57 org.eclipse.jdt.core.compiler.problem.missingJavadocTagsOverriding=enabled 58 58 org.eclipse.jdt.core.compiler.problem.missingJavadocTagsVisibility=private 59 59 org.eclipse.jdt.core.compiler.problem.missingOverrideAnnotation=warning -
trunk/build.xml
r9212 r9249 276 276 encoding="UTF-8" 277 277 packagenames="org.openstreetmap.josm.*,org.openstreetmap.gui.jmapviewer.*" 278 excludepackagenames="org.openstreetmap.josm.gui.mappaint.mapcss.parsergen.*" 278 279 windowtitle="JOSM" 279 280 use="true" -
trunk/src/org/openstreetmap/josm/data/validation/routines/RegexValidator.java
r8795 r9249 32 32 * RegexValidator validator = new RegexValidator(regexs, false); 33 33 * </pre> 34 * <p>35 34 * <ul> 36 35 * <li>Validate <code>true</code> or <code>false</code>: -
trunk/src/org/openstreetmap/josm/gui/FileDrop.java
r8958 r9249 34 34 import org.openstreetmap.josm.Main; 35 35 import org.openstreetmap.josm.actions.OpenFileAction; 36 import org.openstreetmap.josm.gui.FileDrop.TransferableObject; 36 37 37 38 // CHECKSTYLE.OFF: HideUtilityClassConstructor … … 65 66 * object (such as <tt>System.out</tt>) into the full constructor. A <tt>null</tt> 66 67 * value will result in no extra debugging information being output. 67 * <p>68 68 * 69 69 * <p>I'm releasing this code into the Public Domain. Enjoy. -
trunk/src/org/openstreetmap/josm/gui/help/HelpContentReader.java
r9246 r9249 35 35 * 36 36 * @param helpTopicUrl the absolute help topic URL 37 * @param dotest 37 * @param dotest if {@code true}, checks if help content is empty 38 38 * @return the content, filtered and transformed for being displayed in the internal help browser 39 39 * @throws HelpContentReaderException if problem occurs -
trunk/src/org/openstreetmap/josm/gui/util/StayOpenCheckBoxMenuItem.java
r8126 r9249 3 3 4 4 import javax.swing.Action; 5 import javax.swing.Icon;6 5 import javax.swing.JCheckBoxMenuItem; 7 6 import javax.swing.MenuElement; … … 9 8 import javax.swing.event.ChangeEvent; 10 9 import javax.swing.event.ChangeListener; 11 12 10 13 11 /** … … 33 31 34 32 /** 35 * @see JCheckBoxMenuItem#JCheckBoxMenuItem() 36 */ 37 public StayOpenCheckBoxMenuItem() { 38 super(); 39 } 40 41 /** 42 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(Action) 33 * Contructs a new {@code StayOpenCheckBoxMenuItem} whose properties are taken from the Action supplied. 34 * @param a action 43 35 */ 44 36 public StayOpenCheckBoxMenuItem(Action a) { 45 37 super(a); 46 }47 48 /**49 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(Icon)50 */51 public StayOpenCheckBoxMenuItem(Icon icon) {52 super(icon);53 }54 55 /**56 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String)57 */58 public StayOpenCheckBoxMenuItem(String text) {59 super(text);60 }61 62 /**63 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, boolean)64 */65 public StayOpenCheckBoxMenuItem(String text, boolean selected) {66 super(text, selected);67 }68 69 /**70 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, Icon)71 */72 public StayOpenCheckBoxMenuItem(String text, Icon icon) {73 super(text, icon);74 }75 76 /**77 * @see JCheckBoxMenuItem#JCheckBoxMenuItem(String, Icon, boolean)78 */79 public StayOpenCheckBoxMenuItem(String text, Icon icon, boolean selected) {80 super(text, icon, selected);81 38 } 82 39 -
trunk/src/org/openstreetmap/josm/tools/HttpClient.java
r9232 r9249 328 328 * @return {@code Expire} HTTP header 329 329 * @see HttpURLConnection#getExpiration() 330 * @since 330 * @since 9232 331 331 */ 332 332 public long getExpiration() {
Note:
See TracChangeset
for help on using the changeset viewer.