home *** CD-ROM | disk | FTP | other *** search
- package netscape.palomar.sgml;
-
- import java.io.DataOutputStream;
- import netscape.palomar.util.CascadedException;
- import netscape.palomar.util.Tree;
-
- public interface SGMLElement extends Tree {
- String getTagType();
-
- void writeYourself(DataOutputStream var1) throws CascadedException;
-
- String getRawValue() throws CascadedException;
-
- void setRawValue(String var1) throws CascadedException;
-
- SGMLParser getParser();
- }
-