1 11 package org.eclipse.pde.internal.core.ifeature; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 public interface IEnvironment { 16 static final String P_OS = "os"; static final String P_WS = "ws"; static final String P_ARCH = "arch"; static final String P_NL = "nl"; 21 String getOS(); 22 String getWS(); 23 String getArch(); 24 String getNL(); 25 26 void setOS(String os) throws CoreException; 27 void setWS(String ws) throws CoreException; 28 void setArch(String arch) throws CoreException; 29 void setNL(String nl) throws CoreException; 30 } 31 | Popular Tags |