Changeset 12615 in josm for trunk/src/org
- Timestamp:
- 2017-08-20T16:56:12+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/gui
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/dialogs/properties/RecentTagCollection.java
r11366 r12615 13 13 import org.openstreetmap.josm.data.preferences.CollectionProperty; 14 14 15 /** 16 * Manages list of recently used tags that will be displayed in the {@link PropertiesDialog}. 17 */ 15 18 class RecentTagCollection { 16 19 -
trunk/src/org/openstreetmap/josm/gui/history/NodeListTableCellRenderer.java
r10308 r12615 16 16 import org.openstreetmap.josm.tools.ImageProvider; 17 17 18 /** 19 * A {@link TableCellRenderer} for the {@link NodeListViewer}. 20 * 21 * Renders information about a node when comparing the node list of two 22 * historical versions of a way. 23 */ 18 24 public class NodeListTableCellRenderer extends JLabel implements TableCellRenderer { 19 25 -
trunk/src/org/openstreetmap/josm/gui/history/SelectionSynchronizer.java
r10755 r12615 10 10 import javax.swing.event.ListSelectionListener; 11 11 12 /** 13 * Helper class to ensure that two (or more) {@link javax.swing.JTable}s always 14 * have the same entries selected. 15 * 16 * The tables are usually displayed side-by-side. 17 */ 12 18 public class SelectionSynchronizer implements ListSelectionListener { 13 19 … … 22 28 } 23 29 30 /** 31 * Add {@link ListSelectionModel} of the table to participate in selection 32 * synchronization. 33 * 34 * Call this method for all tables that should have their selection synchronized. 35 * @param model the selection model of the table 36 */ 24 37 public void participateInSynchronizedSelection(ListSelectionModel model) { 25 38 if (model == null) -
trunk/src/org/openstreetmap/josm/gui/tagging/presets/items/Roles.java
r11989 r12615 23 23 import org.xml.sax.SAXException; 24 24 25 /** 26 * The <code>roles</code> element in tagging presets definition. 27 * <p> 28 * A list of {@link Role} elements. Describes the roles that are expected for 29 * the members of a relation. 30 * <p> 31 * Used for data validation, auto completion, among others. 32 */ 25 33 public class Roles extends TaggingPresetItem { 26 34 35 /** 36 * The <code>role</code> element in tagging preset definition. 37 * 38 * Information on a certain role, which is expected for the relation members. 39 */ 27 40 public static class Role { 28 41 public Set<TaggingPresetType> types; // NOSONAR
Note:
See TracChangeset
for help on using the changeset viewer.