home *** CD-ROM | disk | FTP | other *** search
/ PC Online 1998 September / PCO_0998.ISO / browser / ns405lyc / netcast.z / ncjava10.jar / netscape / palomar / sgml / SGMLElement.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-03-06  |  671 b   |  18 lines

  1. package netscape.palomar.sgml;
  2.  
  3. import java.io.DataOutputStream;
  4. import netscape.palomar.util.CascadedException;
  5. import netscape.palomar.util.Tree;
  6.  
  7. public interface SGMLElement extends Tree {
  8.    String getTagType();
  9.  
  10.    void writeYourself(DataOutputStream var1) throws CascadedException;
  11.  
  12.    String getRawValue() throws CascadedException;
  13.  
  14.    void setRawValue(String var1) throws CascadedException;
  15.  
  16.    SGMLParser getParser();
  17. }
  18.