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 class ProviderBeanImpl implements IProviderBean {
16: private StringBuffer _htmlContent;
17: private boolean _isEditable = false;
18:
19: /**
20: * @return Returns the _isEditable.
21: */
22: public boolean is_isEditable() {
23: return _isEditable;
24: }
25:
26: /* (non-Javadoc)
27: * @see com.sun.portal.sra.beans.IProviderBean#set_HtmlContnet(java.lang.String)
28: */
29: public void set_HtmlContent(StringBuffer s) {
30: _htmlContent = s;
31:
32: }
33:
34: /* (non-Javadoc)
35: * @see com.sun.portal.sra.beans.IProviderBean#get_HtmlContent()
36: */
37: public StringBuffer get_HtmlContent() {
38: return _htmlContent;
39: }
40:
41: /* (non-Javadoc)
42: * @see com.sun.portal.sra.beans.IProviderBean#get_editableHtmlContent(java.lang.String)
43: */
44: public StringBuffer get_editableHtmlContent(String content) {
45: // TODO Auto-generated method stub
46: return null;
47: }
48:
49: }
|