1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import java.net.URL ; 14 15 import org.eclipse.core.runtime.CoreException; 16 23 public interface IFeatureURLElement extends IFeatureObject { 24 27 public static final int UPDATE = 1; 28 31 public static final int DISCOVERY = 2; 32 35 public static final int UPDATE_SITE = 0; 36 39 public static final int WEB_SITE = 1; 40 44 public static final String P_URL = "url"; 49 public static final String P_SITE_TYPE = "siteType"; 53 public int getElementType(); 54 55 59 public int getSiteType(); 60 65 public URL getURL(); 66 73 public void setURL(URL url) throws CoreException; 74 78 public void setSiteType(int siteType) throws CoreException; 79 } 80 | Popular Tags |