1 11 package org.eclipse.help.ui; 12 13 import java.util.Dictionary ; 14 15 26 27 public interface IEngineDescriptor { 28 33 String getId(); 34 35 41 String getEngineTypeId(); 42 43 48 String getLabel(); 49 50 57 void setLabel(String label); 58 59 64 String getDescription(); 65 66 73 void setDescription(String desc); 74 75 81 Dictionary getParameters(); 82 83 91 boolean isUserDefined(); 92 } 93 | Popular Tags |