1 11 package org.eclipse.compare; 12 13 import org.eclipse.jface.viewers.ILabelProvider; 14 import org.eclipse.swt.graphics.Image; 15 16 24 public interface ICompareInputLabelProvider extends ILabelProvider { 25 26 33 String getAncestorLabel(Object input); 34 35 42 Image getAncestorImage(Object input); 43 44 51 String getLeftLabel(Object input); 52 53 60 Image getLeftImage(Object input); 61 62 69 String getRightLabel(Object input); 70 71 78 Image getRightImage(Object input); 79 } 80 | Popular Tags |