home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / NETSCAP4.06 / CP32E406.EXE / netcast.z / ncjava10.jar / netscape / palomar / sgml / SGMLAttribute.class (.txt) < prev    next >
Encoding:
Java Class File  |  1998-02-26  |  536 b   |  16 lines

  1. package netscape.palomar.sgml;
  2.  
  3. import netscape.palomar.util.CascadedException;
  4.  
  5. public interface SGMLAttribute {
  6.    String getRawValue() throws CascadedException;
  7.  
  8.    void setRawValue(String var1) throws CascadedException;
  9.  
  10.    String getUnicode() throws CascadedException;
  11.  
  12.    void setUnicode(String var1) throws CascadedException;
  13.  
  14.    String getName();
  15. }
  16.