1 11 package org.eclipse.ui.views.markers.internal; 12 13 14 import org.eclipse.swt.graphics.Image; 15 16 22 public class FieldDummy extends AbstractField implements IField { 23 24 27 public String getDescription() { 28 return Util.EMPTY_STRING; 29 } 30 31 34 public Image getDescriptionImage() { 35 return null; 36 } 37 38 41 public String getColumnHeaderText() { 42 return Util.EMPTY_STRING; 43 } 44 45 48 public Image getColumnHeaderImage() { 49 return null; 50 } 51 52 55 public String getValue(Object obj) { 56 return Util.EMPTY_STRING; 57 } 58 59 62 public Image getImage(Object obj) { 63 return null; 64 } 65 66 69 public int compare(Object obj1, Object obj2) { 70 return 0; 71 } 72 73 76 public int getDefaultDirection() { 77 return TableComparator.ASCENDING; 78 } 79 80 83 public int getPreferredWidth() { 84 return 0; 85 } 86 87 } 88 | Popular Tags |