1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import org.eclipse.core.runtime.CoreException; 14 import org.eclipse.pde.core.IIdentifiable; 15 18 public interface IFeatureEntry extends IFeatureObject, IIdentifiable { 19 String P_OS = "p_os"; String P_WS = "p_ws"; String P_NL = "p_nl"; String P_ARCH = "p_arch"; String P_DOWNLOAD_SIZE = "p_download_size"; String P_INSTALL_SIZE = "p_install_size"; 26 29 public String getOS(); 30 33 public String getWS(); 34 37 public String getNL(); 38 41 public String getArch(); 42 45 public long getDownloadSize(); 46 49 public long getInstallSize(); 50 53 public void setOS(String os) throws CoreException; 54 57 public void setWS(String ws) throws CoreException; 58 61 public void setNL(String nl) throws CoreException; 62 65 public void setArch(String arch) throws CoreException; 66 69 public void setDownloadSize(long size) throws CoreException; 70 73 public void setInstallSize(long size) throws CoreException; 74 } 75 | Popular Tags |