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

Last change on this file since 8512 was 8512, checked in by Don-vip, 9 years ago

checkstyle: redundant modifiers

  • Property svn:eol-style set to native
File size: 298 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
8public interface OsmPrimitivesTableModel extends TableModel {
9
10 OsmPrimitive getReferredPrimitive(int idx);
11}
Note: See TracBrowser for help on using the repository browser.