source: josm/trunk/src/org/openstreetmap/josm/gui/widgets/OsmPrimitivesTableModel.java@ 13146

Last change on this file since 13146 was 12304, checked in by michael2402, 7 years ago

Javadoc for public methods / classes in gui.util and gui.widgets

  • Property svn:eol-style set to native
File size: 495 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.gui.widgets;
3
4import javax.swing.table.TableModel;
5
6import org.openstreetmap.josm.data.osm.OsmPrimitive;
7
8/**
9 * A table model that displays OSM primitives in it's rows
10 */
11public interface OsmPrimitivesTableModel extends TableModel {
12
13 /**
14 * Gets the primitive at a given row index
15 * @param idx The row
16 * @return The primitive in that row
17 */
18 OsmPrimitive getReferredPrimitive(int idx);
19}
Note: See TracBrowser for help on using the repository browser.