1 package prefuse.data.util; 2 3 import prefuse.data.column.Column; 4 import prefuse.data.event.ProjectionListener; 5 6 14 public interface ColumnProjection { 15 16 22 public boolean include(Column col, String name); 23 24 28 public void addProjectionListener(ProjectionListener lstnr); 29 30 34 public void removeProjectionListener(ProjectionListener lstnr); 35 36 } | Popular Tags |