1 19 20 package org.netbeans.modules.xml.schema.model; 21 22 27 public interface Notation extends SchemaComponent, ReferenceableSchemaComponent { 28 public static final String PUBLIC_PROPERTY = "public"; 29 public static final String SYSTEM_PROPERTY = "system"; 30 31 34 String getPublicIdentifier(); 35 38 void setPublicIdentifier(String publicID); 39 40 43 String getSystemIdentifier(); 44 47 void setSystemIdentifier(String systemID); 48 49 } 50 | Popular Tags |