01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: package org.apache.xerces.impl.dtd;
19:
20: /**
21: * @xerces.internal
22: *
23: * @version $Id: XMLNotationDecl.java 446755 2006-09-15 21:56:27Z mrglavas $
24: */
25: public class XMLNotationDecl {
26:
27: //
28: // Data
29: //
30:
31: /** name */
32: public String name;
33:
34: /** publicId */
35: public String publicId;
36:
37: /** systemId */
38: public String systemId;
39:
40: /** base systemId */
41: public String baseSystemId;
42:
43: //
44: // Methods
45: //
46:
47: /**
48: * setValues
49: *
50: * @param name
51: * @param publicId
52: * @param systemId
53: */
54: public void setValues(String name, String publicId,
55: String systemId, String baseSystemId) {
56: this .name = name;
57: this .publicId = publicId;
58: this .systemId = systemId;
59: this .baseSystemId = baseSystemId;
60: } // setValues
61:
62: /**
63: * clear
64: */
65: public void clear() {
66: this .name = null;
67: this .publicId = null;
68: this .systemId = null;
69: this .baseSystemId = null;
70: } // clear
71:
72: } // class XMLNotationDecl
|