1 11 package org.eclipse.pde.internal.core.ischema; 12 13 import org.eclipse.core.runtime.CoreException; 14 15 19 public interface ISchemaInclude extends ISchemaObject { 20 23 String P_LOCATION = "location"; 25 String getLocation(); 26 27 void setLocation(String location) throws CoreException; 28 29 ISchema getIncludedSchema(); 30 31 void dispose(); 32 } 33 | Popular Tags |