01: /*
02: * Copyright (c) 2001 World Wide Web Consortium,
03: * (Massachusetts Institute of Technology, Institut National de
04: * Recherche en Informatique et en Automatique, Keio University). All
05: * Rights Reserved. This program is distributed under the W3C's Software
06: * Intellectual Property License. This program is distributed in the
07: * hope that it will be useful, but WITHOUT ANY WARRANTY; without even
08: * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
09: * PURPOSE.
10: * See W3C License http://www.w3.org/Consortium/Legal/ for more details.
11: */
12:
13: package org.apache.xerces.dom3.as;
14:
15: /**
16: * @deprecated
17: * This interface represents a notation declaration.
18: * <p>See also the <a href='http://www.w3.org/TR/2001/WD-DOM-Level-3-ASLS-20011025'>Document Object Model (DOM) Level 3 Abstract Schemas and Load
19: and Save Specification</a>.
20: */
21: public interface ASNotationDeclaration extends ASObject {
22: /**
23: * the URI reference representing the system identifier for the notation
24: * declaration, if present, <code>null</code> otherwise.
25: */
26: public String getSystemId();
27:
28: /**
29: * the URI reference representing the system identifier for the notation
30: * declaration, if present, <code>null</code> otherwise.
31: */
32: public void setSystemId(String systemId);
33:
34: /**
35: * The string representing the public identifier for this notation
36: * declaration, if present; <code>null</code> otherwise.
37: */
38: public String getPublicId();
39:
40: /**
41: * The string representing the public identifier for this notation
42: * declaration, if present; <code>null</code> otherwise.
43: */
44: public void setPublicId(String publicId);
45:
46: }
|