|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
This object is used to stream output from Process Manager.
IPresentationElement| Method Summary | |
IHTMLPage |
addAttribute(java.lang.String name,
boolean value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.util.Date value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
double value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.util.Enumeration en)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.util.Hashtable ht)
Adds an attribute to the data model. |
IHTMLPage |
addAttribute(java.lang.String name,
int value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
long value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.lang.Object value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.lang.String value)
Adds an attribute to the model. |
IHTMLPage |
addAttribute(java.lang.String name,
java.util.Vector v)
Adds an attribute to the model. |
IHTMLPage |
beginScript(java.lang.String comment)
Writes out the following string to the stream. |
IHTMLPage |
closeModel()
Writes the following string to the servlet response stream. |
IHTMLPage |
closeNode()
Writes the following string to the servlet response stream. |
IHTMLPage |
endScript()
Writes out the following string to the stream. |
void |
flush()
Flushes out the contents of the buffer to the stream of the HttpServletResponse object. |
IHTMLPage |
openModel(java.lang.String root)
Writes the following string to the servlet response stream. |
IHTMLPage |
openNode(java.lang.String name)
Writes the following string to the servlet response stream. |
IHTMLPage |
println(java.lang.String content)
Writes out the content to the HttpServletResponse object. |
IHTMLPage |
write(java.lang.String content)
Writes out the content to the HttpServletResponse object. |
IHTMLPage |
writeComment(java.lang.String comment)
writes out a comment of the following format to the stream <!-- comment --> |
IHTMLPage |
writeln(java.lang.String content)
Writes out the content to the HttpServletResponse object. |
IHTMLPage |
writeScript(java.lang.String csjsContent)
Writes out the following string to the stream. |
IHTMLPage |
writeScript(java.lang.String csjsContent,
java.lang.String comment)
Writes out the following string to the stream. |
| Method Detail |
public IHTMLPage write(java.lang.String content)
content - a String objectprintln(java.lang.String),
writeln(java.lang.String)public IHTMLPage println(java.lang.String content)
content - a String objectprintln(java.lang.String),
writeln(java.lang.String)public IHTMLPage writeln(java.lang.String content)
<BR>to the stream after the content.
content - a String objectprintln(java.lang.String),
writeln(java.lang.String)public void flush()
public IHTMLPage writeComment(java.lang.String comment)
comment - The comment that should be written out.public IHTMLPage writeScript(java.lang.String csjsContent)
<SCRIPT language='JavaScript'>
<!--
... JavaScript source contained in the csjsContent parameter...
// -->
</SCRIPT>
csjsContent - The client side Javascript content that should be written out
public IHTMLPage writeScript(java.lang.String csjsContent,
java.lang.String comment)
<!-- begin comment -->
<SCRIPT language='JavaScript'>
<!--
... JavaScript source ...
// -->
</SCRIPT>
<!-- end comment -->
csjsContent - The client side Javascript content that should be written outcomment - The comment that should be written out to the stream.public IHTMLPage beginScript(java.lang.String comment)
<!-- begin comment --> <SCRIPT language='JavaScript'> <!--
comment - The comment that should be written out to the stream.public IHTMLPage endScript()
// --< </SCRIPT>
public IHTMLPage openNode(java.lang.String name)
n# = new __DataModel();
__add( 'name', n# );
with( n# ) {
name - The name of the object that should be added to the data model.public IHTMLPage closeNode()
} // closes with block
openNode(java.lang.String)public IHTMLPage openModel(java.lang.String root)
<DATA NAME='root' TYPE='JavaScript'>
<!-- begin root -->
<SCRIPT language='JavaScript'>
<!--
root = new __DataModel();
with( root ) {
openNode(java.lang.String)public IHTMLPage closeModel()
} // closeNode
// -->
</SCRIPT>
</DATA>
openNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.lang.Object value)
valueStringis a stringified representation of the object parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.obj - The object that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
long value)
valueStringis a stringified representation of the long parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The long that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
double value)
valueStringis a stringified representation of the double parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The double that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
int value)
valueStringis a stringified representation of the int parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The int that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
boolean value)
valueStringis a stringified representation of the boolean parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The boolean that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.lang.String value)
valueStringis a stringified representation of the string parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The string that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.util.Date value)
valueStringis a stringified representation of the date parameter
value.
__add( 'name', valueString );
name - The name by which the object that is to be added to the data model is going to be
indexed.value - The date that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.util.Enumeration en)
name - The name by which the object that is to be added to the data model is going to be
indexed.en - The enumeration that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.util.Vector v)
name - The name by which the object that is to be added to the data model is going to be
indexed.v - The vector that is to be stored in the data modelopenNode(java.lang.String)
public IHTMLPage addAttribute(java.lang.String name,
java.util.Hashtable ht)
name - The name by which the object that is to be added to the data model is going to be
indexed.ht - The hashtable that is to be stored in the data modelopenNode(java.lang.String)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||