001 // License: GPL. For details, see LICENSE file.
002 package org.openstreetmap.josm.gui.widgets;
003
004 import javax.swing.table.TableModel;
005
006 import org.openstreetmap.josm.data.osm.OsmPrimitive;
007
008 public interface OsmPrimitivesTableModel extends TableModel {
009
010 public abstract OsmPrimitive getReferredPrimitive(int idx);
011 }