Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

com.tripi.asp
Class HTMLNode  view HTMLNode download HTMLNode.java

java.lang.Object
  extended bycom.tripi.asp.HTMLNode
All Implemented Interfaces:
Node

public class HTMLNode
extends java.lang.Object
implements Node

HTMLNode handles a normal HTML %> ... <% "output" node.

Version:
0.9

Field Summary
(package private)  java.lang.String html
          Text string of the HTML
 
Constructor Summary
HTMLNode(java.lang.String inHtml)
          Constructor.
 
Method Summary
 void dump()
          Dumps this node.
 java.lang.Object execute(AspContext context)
          Executes this node within the specified context.
 void prepare(AspContext context)
          Prepares this node for execution.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

html

java.lang.String html
Text string of the HTML

Constructor Detail

HTMLNode

public HTMLNode(java.lang.String inHtml)
Constructor.

Method Detail

dump

public void dump()
Dumps this node.

Specified by:
dump in interface Node

prepare

public void prepare(AspContext context)
Prepares this node for execution.

Specified by:
prepare in interface Node

execute

public java.lang.Object execute(AspContext context)
                         throws AspException
Executes this node within the specified context. This node simply calls the Response.Write routine within the current context to output this node.

Specified by:
execute in interface Node