01: /*
02: * Created on May 31, 2004
03: *
04: * To change the template for this generated file go to
05: * Window - Preferences - Java - Code Generation - Code and Comments
06: */
07: package com.sun.portal.sra.beans;
08:
09: /**
10: * @author ss150821
11: *
12: * To change the template for this generated type comment go to
13: * Window - Preferences - Java - Code Generation - Code and Comments
14: */
15: public interface IProviderBean {
16: public void set_HtmlContent(StringBuffer s);
17:
18: public StringBuffer get_HtmlContent();
19:
20: public StringBuffer get_editableHtmlContent(String content);
21:
22: public boolean is_isEditable();
23:
24: }
|