Annotation of java/classes/org/w3c/util/Status.java, revision 1.3
1.1 ylafon 1: // Status.java
1.3 ! ylafon 2: // $Id: Status.java,v 1.2 2000/12/06 21:05:38 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.3 ! 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
1.3 ! ylafon 13: *
1.1 ylafon 14: * @return a String, the generated HTML
15: */
16: public String getHTMLStatus();
17: }
Webmaster