001/* 002 * To change this template, choose Tools | Templates 003 * and open the template in the editor. 004 */ 005package jmri.swing; 006 007import javax.swing.ListModel; 008 009/** 010 * 011 * @author Randall Wood 012 */ 013public interface EditableListModel<E> extends ListModel<E> { 014 015 boolean isCellEditable(int index); 016 017 void setValueAt(E value, int index); 018}