1 19 20 package org.netbeans.modules.xml.retriever.catalog.model; 21 22 import java.net.URI ; 23 24 28 public interface System extends CatalogComponent{ 29 30 public static String SYSTEMID_ATTR_PROP = CatalogAttributes.systemId.getName(); 31 public static String URI_ATTR_PROP = CatalogAttributes.uri.getName(); 32 public static String XPROJECTREF_ATTR_PROP = CatalogAttributes. 33 xprojectCatalogFileLocation.getName(); 34 public static String REFFILE_ATTR_PROP = CatalogAttributes.referencingFile. 35 getName(); 36 37 String getSystemIDAttr(); 38 void setSystemIDAttr(URI uri); 39 40 String getURIAttr(); 41 void setURIAttr(URI uri); 42 43 String getXprojectCatalogFileLocationAttr(); 44 void setXprojectCatalogFileLocationAttr(URI uri); 45 46 String getReferencingFileAttr(); 47 void setReferencingFileAttr(URI uri); 48 49 } 50 | Popular Tags |