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. package com.sun.org.apache.xerces.internal.dom3.as;
  13. /**
  14. * @deprecated
  15. * This interface represents a notation declaration.
  16. * <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
  17. and Save Specification</a>.
  18. */
  19. public interface ASNotationDeclaration extends ASObject {
  20. /**
  21. * the URI reference representing the system identifier for the notation
  22. * declaration, if present, <code>null</code> otherwise.
  23. */
  24. public String getSystemId();
  25. /**
  26. * the URI reference representing the system identifier for the notation
  27. * declaration, if present, <code>null</code> otherwise.
  28. */
  29. public void setSystemId(String systemId);
  30. /**
  31. * The string representing the public identifier for this notation
  32. * declaration, if present; <code>null</code> otherwise.
  33. */
  34. public String getPublicId();
  35. /**
  36. * The string representing the public identifier for this notation
  37. * declaration, if present; <code>null</code> otherwise.
  38. */
  39. public void setPublicId(String publicId);
  40. }