1 11 12 package org.eclipse.ui.views.markers.internal; 13 14 import org.eclipse.swt.graphics.Image; 15 16 20 public interface IField { 21 22 25 String getDescription(); 26 27 30 Image getDescriptionImage(); 31 32 35 String getColumnHeaderText(); 36 37 40 Image getColumnHeaderImage(); 41 42 46 String getValue(Object obj); 47 48 53 Image getImage(Object obj); 54 55 63 int compare(Object obj1, Object obj2); 64 65 70 int getDefaultDirection(); 71 72 76 int getPreferredWidth(); 77 78 82 boolean isShowing(); 83 84 88 void setShowing(boolean showing); 89 90 91 } 92 | Popular Tags |