01: // Status.java
02: // $Id: Status.java,v 1.2 2000/12/06 21:05:38 ylafon Exp $
03: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.util;
07:
08: public interface Status {
09:
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: }
|