01: // ReplyInterface.java
02: // $Id: ReplyInterface.java,v 1.1 1998/01/22 12:57:17 bmahe Exp $
03: // (c) COPYRIGHT MIT and INRIA, 1996.
04: // Please first read the full copyright statement in file COPYRIGHT.html
05:
06: package org.w3c.tools.resources;
07:
08: public interface ReplyInterface {
09:
10: /**
11: * Set this reply content.
12: * This method allows to set the reply content to a simple String instance.
13: * @param content The reply content.
14: */
15: public void setContent(String content);
16:
17: }
|