Changeset 2416 in josm for trunk/src/org/openstreetmap/josm/gui/history
- Timestamp:
- 2009-11-08T23:21:35+01:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/HistoryBrowser.java
r2275 r2416 18 18 /** 19 19 * HistoryBrowser is an UI component which displays history information about an {@see OsmPrimitive}. 20 * 20 * 21 21 * 22 22 */ … … 34 34 /** 35 35 * embedds table in a {@see JScrollPane} 36 * 36 * 37 37 * @param table the table 38 38 * @return the {@see JScrollPane} with the embedded table … … 47 47 /** 48 48 * creates the table which shows the list of versions 49 * 49 * 50 50 * @return the panel with the version table 51 51 */ … … 62 62 * creates the panel which shows information about two different versions 63 63 * of the same {@see OsmPrimitive}. 64 * 64 * 65 65 * @return the panel 66 66 */ … … 122 122 /** 123 123 * populates the browser with the history of a specific {@see OsmPrimitive} 124 * 124 * 125 125 * @param history the history 126 126 */ 127 127 public void populate(History history) { 128 128 model.setHistory(history); 129 130 tpViewers.removeAll(); 129 131 130 132 tpViewers.add(tagInfoViewer); … … 146 148 /** 147 149 * replies the {@see History} currently displayed by this browser 148 * 150 * 149 151 * @return the current history 150 152 */
Note:
See TracChangeset
for help on using the changeset viewer.