1 /* 2 * Copyright (c) 2001 World Wide Web Consortium, 3 * (Massachusetts Institute of Technology, Institut National de 4 * Recherche en Informatique et en Automatique, Keio University). All 5 * Rights Reserved. This program is distributed under the W3C's Software 6 * Intellectual Property License. This program is distributed in the 7 * hope that it will be useful, but WITHOUT ANY WARRANTY; without even 8 * the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 9 * 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 * the URI reference representing the system identifier for the notation 29 * declaration, if present, <code>null</code> otherwise. 30 */ 31 public void setSystemId(String systemId); 32 33 /** 34 * The string representing the public identifier for this notation 35 * declaration, if present; <code>null</code> otherwise. 36 */ 37 public String getPublicId(); 38 /** 39 * The string representing the public identifier for this notation 40 * declaration, if present; <code>null</code> otherwise. 41 */ 42 public void setPublicId(String publicId); 43 44 } 45