1 11 package org.eclipse.pde.internal.core.isite; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 public interface ISiteArchive extends ISiteObject { 16 String P_URL = "url"; String P_PATH = "path"; String getURL(); 19 void setURL(String url) throws CoreException; 20 String getPath(); 21 void setPath(String path) throws CoreException; 22 } 23 | Popular Tags |