1 16 17 package org.apache.xerces.impl.dtd; 18 19 24 public class XMLNotationDecl { 25 26 30 31 public String name; 32 33 34 public String publicId; 35 36 37 public String systemId; 38 39 40 public String baseSystemId; 41 42 46 53 public void setValues(String name, String publicId, String systemId, String baseSystemId) { 54 this.name = name; 55 this.publicId = publicId; 56 this.systemId = systemId; 57 this.baseSystemId = baseSystemId; 58 } 60 63 public void clear() { 64 this.name = null; 65 this.publicId = null; 66 this.systemId = null; 67 this.baseSystemId = null; 68 } 70 } | Popular Tags |