1 2 20 21 package org.netbeans.modules.xml.schema.model; 22 23 import org.netbeans.modules.xml.xam.locator.CatalogModelException; 24 25 31 public interface SchemaModelReference extends SchemaComponent { 32 public static final String SCHEMA_LOCATION_PROPERTY = "schemaLocation"; 33 34 39 45 SchemaModel resolveReferencedModel() throws CatalogModelException; 46 47 48 String getSchemaLocation(); 49 void setSchemaLocation(String uri); 50 } 51 | Popular Tags |