1 22 23 package org.xquark.schema; 24 25 public final class NotationDeclaration extends SchemaComponent 26 { 27 private static final String RCSRevision = "$Revision: 1.1 $"; 28 private static final String RCSName = "$Name: $"; 29 private String publicId = null; 30 private String systemId = null; 31 32 public NotationDeclaration(Schema schema, String name, String publicId, String systemId) { 33 super(schema, name); 34 this.publicId = publicId; 35 this.systemId = systemId; 36 } 37 38 public String getPublicId() { 39 return publicId; 40 } 41 42 public String getSystemId() { 43 return systemId; 44 } 45 46 } 47 48 | Popular Tags |