home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2004 May / DPPCPRO0504.ISO / May / Seatools / SeaTools.iso / tools / en / webhelp / webhelp.jar / BsscXML / IBsscXMLElementReader.class (.txt) < prev    next >
Encoding:
Java Class File  |  2002-04-17  |  510 b   |  20 lines

  1. package BsscXML;
  2.  
  3. public interface IBsscXMLElementReader {
  4.    int findChild(IBsscXMLElementReader var1);
  5.  
  6.    IBsscXMLElementReader getChild(int var1);
  7.  
  8.    String getValue();
  9.  
  10.    String getAttribute(String var1);
  11.  
  12.    IBsscXMLElementReader getNextSibling();
  13.  
  14.    IBsscXMLElementReader getParent();
  15.  
  16.    IBsscXMLElementReader getPrevSibling();
  17.  
  18.    String getName();
  19. }
  20.