Annotation of java/classes/org/w3c/util/Status.java, revision 1.1
1.1 ! ylafon 1: // Status.java
! 2: // $Id: Status.java,v 1.2 2000/08/16 21:37:48 ylafon Exp $
! 3: // (c) COPYRIGHT MIT, INRIA and Keio, 2000.
! 4: // Please first read the full copyright statement in file COPYRIGHT.html
! 5:
! 6: package org.w3c.util.status ;
! 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