Annotation of java/classes/org/w3c/util/Status.java, revision 1.2
1.1 ylafon 1: // Status.java
1.2 ! ylafon 2: // $Id: Status.java,v 1.1 2000/12/06 20:57:36 ylafon Exp $
1.1 ylafon 3: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
4: // Please first read the full copyright statement in file COPYRIGHT.html
5:
1.2 ! ylafon 6: package org.w3c.util ;
1.1 ylafon 7:
8: public interface Status {
9:
10: /**
11: * Give the status of this class as a partial HTML text which will be added
12: * into a block level element
13: * @return a String, the generated HTML
14: */
15: public String getHTMLStatus();
16: }
Webmaster