1 package de.uka.ipd.coverage.plugin.ui; 2 3 4 14 15 import org.eclipse.swt.graphics.Image; 16 17 public interface IField { 18 19 22 String getDescription(); 23 24 27 Image getDescriptionImage(); 28 29 32 String getColumnHeaderText(); 33 34 37 Image getColumnHeaderImage(); 38 39 43 String getValue(Object obj); 44 45 50 Image getImage(Object obj); 51 52 60 int compare(Object obj1, Object obj2); 61 } 62 | Popular Tags |