1 57 58 package com.sun.org.apache.xerces.internal.impl.dtd; 59 60 63 public class XMLNotationDecl { 64 65 69 70 public String name; 71 72 73 public String publicId; 74 75 76 public String systemId; 77 78 79 public String baseSystemId; 80 81 85 92 public void setValues(String name, String publicId, String systemId, String baseSystemId) { 93 this.name = name; 94 this.publicId = publicId; 95 this.systemId = systemId; 96 this.baseSystemId = baseSystemId; 97 } 99 102 public void clear() { 103 this.name = null; 104 this.publicId = null; 105 this.systemId = null; 106 this.baseSystemId = null; 107 } 109 } | Popular Tags |