Changeset 5835 in josm
- Timestamp:
- 2013-04-07T21:59:55+02:00 (12 years ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/osm/visitor/paint/StyledMapRenderer.java
r5812 r5835 329 329 private boolean leftHandTraffic; 330 330 331 /**332 * {@inheritDoc}333 */334 331 public StyledMapRenderer(Graphics2D g, NavigatableComponent nc, boolean isInactiveMode) { 335 332 super(g, nc, isInactiveMode); -
trunk/src/org/openstreetmap/josm/gui/FileDrop.java
r5275 r5835 19 19 /** 20 20 * This class makes it easy to drag and drop files from the operating 21 * system to a Java program. Any <tt>java.awt.Component</tt>can be22 * dropped onto, but only <tt>javax.swing.JComponent</tt>s will indicate21 * system to a Java program. Any {@link java.awt.Component} can be 22 * dropped onto, but only {@link javax.swing.JComponent}s will indicate 23 23 * the drop event with a changed border. 24 24 * <p/> … … 39 39 * <p/> 40 40 * You can specify the border that will appear when files are being dragged by 41 * calling the constructor with a <tt>javax.swing.border.Border</tt>. Only41 * calling the constructor with a {@link javax.swing.border.Border}. Only 42 42 * <tt>JComponent</tt>s will show any indication with a border. 43 43 * <p/> … … 630 630 /** 631 631 * This is the event that is passed to the 632 * {@link FileDrop Listener#filesDropped filesDropped(...)} method in633 * your {@link FileDrop Listener} when files are dropped onto632 * {@link FileDrop.Listener#filesDropped filesDropped(...)} method in 633 * your {@link FileDrop.Listener} when files are dropped onto 634 634 * a registered drop target. 635 635 * … … 650 650 * 651 651 * @param files The array of files that were dropped 652 * @ source The event source652 * @param source The event source 653 653 * @since 1.1 654 654 */ … … 887 887 * 888 888 * @author Robert Harder 889 * @copyright 2001890 * @version 1.1891 889 * @since 1.1 892 890 */ -
trunk/src/org/openstreetmap/josm/gui/conflict/pair/relation/RelationMemberTableCellRenderer.java
r5299 r5835 135 135 * render the row id 136 136 * @param row the row index 137 * @param isSelected138 137 */ 139 138 protected void renderRowId(int row) { -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/MemberTableCellRenderer.java
r5266 r5835 13 13 14 14 /** 15 * This is the {@link TableCellRenderer} used in the tables of {@link RelationMemberMerger}. 15 * This is the {@link TableCellRenderer} used in the tables of 16 * {@link org.openstreetmap.josm.gui.conflict.pair.relation.RelationMemberMerger}. 16 17 * 17 18 */ -
trunk/src/org/openstreetmap/josm/gui/dialogs/relation/RelationTreeModel.java
r5266 r5835 15 15 /** 16 16 * This is a {@link TreeModel} which provides the hierarchical structure of {@link Relation}s 17 * to a {@linkJTree}.17 * to a {@link javax.swing.tree.JTree}. 18 18 * 19 19 * The model is initialized with a root relation or with a list of {@link RelationMember}s, see -
trunk/src/org/openstreetmap/josm/gui/history/NodeListTableColumnModel.java
r5266 r5835 9 9 10 10 /** 11 * The {@link TableColumnModel} for the table with the list of nodes.11 * The {@link javax.swing.table.TableColumnModel} for the table with the list of nodes. 12 12 * 13 13 * -
trunk/src/org/openstreetmap/josm/gui/history/PointInTimeType.java
r5266 r5835 3 3 4 4 /** 5 * PointInTimeType enumerates two points in time in the {@link History} of an {@link OsmPrimitive}. 5 * PointInTimeType enumerates two points in time in the {@link org.openstreetmap.josm.data.osm.history.History} 6 * of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive}. 6 7 * @author karl 7 *8 8 */ 9 9 public enum PointInTimeType { -
trunk/src/org/openstreetmap/josm/gui/history/RelationMemberListTableCellRenderer.java
r5627 r5835 19 19 20 20 /** 21 * The {@link TableCellRenderer} for a list of relation members in {@link HistoryBrow er}21 * The {@link TableCellRenderer} for a list of relation members in {@link HistoryBrowser} 22 22 * 23 23 * -
trunk/src/org/openstreetmap/josm/gui/history/RelationMemberTableColumnModel.java
r5266 r5835 8 8 9 9 /** 10 * The {@link TableColumnModel} for the table with the list of relation members.10 * The {@link javax.swing.table.TableColumnModel} for the table with the list of relation members. 11 11 * 12 12 */ -
trunk/src/org/openstreetmap/josm/gui/io/SaveLayerTask.java
r5266 r5835 10 10 11 11 /** 12 * SaveLayerTask saves the data managed by an {@link OsmDataLayer} to the13 * {@link OsmDataLayer#getAssociatedFile()}.12 * SaveLayerTask saves the data managed by an {@link org.openstreetmap.josm.gui.layer.OsmDataLayer} to the 13 * {@link org.openstreetmap.josm.gui.layer.OsmDataLayer#getAssociatedFile()}. 14 14 * 15 15 * <pre> -
trunk/src/org/openstreetmap/josm/io/OsmServerHistoryReader.java
r5266 r5835 14 14 15 15 /** 16 * Reads the history of an {@link OsmPrimitive} from the OSM API server.16 * Reads the history of an {@link org.openstreetmap.josm.data.osm.OsmPrimitive} from the OSM API server. 17 17 * 18 18 */
Note:
See TracChangeset
for help on using the changeset viewer.