home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2001 December / dppcpro1201.iso / Extras / maple / Viewer / WebEQ / MMLViewerInstall.cab / MMLViewerApplet.cab / org / w3c / dom / Entity.class (.txt) < prev    next >
Encoding:
Java Class File  |  2001-05-24  |  234 b   |  10 lines

  1. package org.w3c.dom;
  2.  
  3. public interface Entity extends Node {
  4.    String getPublicId();
  5.  
  6.    String getSystemId();
  7.  
  8.    String getNotationName();
  9. }
  10.