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

  1. package org.w3c.dom;
  2.  
  3. public interface Attr extends Node {
  4.    String getName();
  5.  
  6.    boolean getSpecified();
  7.  
  8.    String getValue();
  9.  
  10.    void setValue(String var1) throws DOMException;
  11.  
  12.    Element getOwnerElement();
  13. }
  14.