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

  1. package org.w3c.dom;
  2.  
  3. public interface ProcessingInstruction extends Node {
  4.    String getTarget();
  5.  
  6.    String getData();
  7.  
  8.    void setData(String var1) throws DOMException;
  9. }
  10.