1 11 12 package org.eclipse.pde.internal.core.ifeature; 13 14 import org.eclipse.core.runtime.CoreException; 15 16 public interface IFeatureInfo extends IFeatureObject { 17 String P_URL = "p_url"; 19 String P_DESC = "p_desc"; 21 public String getURL(); 22 23 public String getDescription(); 24 25 public void setURL(String url) throws CoreException; 26 27 public void setDescription(String desc) throws CoreException; 28 29 public boolean isEmpty(); 30 31 public int getIndex(); 32 } 33 | Popular Tags |