1 11 package org.eclipse.compare; 12 13 import org.eclipse.swt.graphics.Image; 14 15 24 public interface ITypedElement { 25 26 30 public static final String FOLDER_TYPE= "FOLDER"; 32 35 public static final String TEXT_TYPE= "txt"; 37 41 public static final String UNKNOWN_TYPE= "???"; 43 49 String getName(); 50 51 57 Image getImage(); 58 59 67 String getType(); 68 } 69 | Popular Tags |