com.primix.tapestry.wml
Class NestedWMLResponseWriter

java.lang.Object
  |
  +--com.primix.tapestry.AbstractResponseWriter
        |
        +--com.primix.tapestry.wml.WMLResponseWriter
              |
              +--com.primix.tapestry.wml.NestedWMLResponseWriter
All Implemented Interfaces:
IResponseWriter

public class NestedWMLResponseWriter
extends WMLResponseWriter

Subclass of WMLResponseWriter that is nested. A nested writer buffers its output, then inserts it into its parent writer when it is closed.

Since:
0.2.9
Version:
$Id: NestedWMLResponseWriter.java,v 1.4 2001/05/02 14:15:17 hship Exp $
Author:
David Solis

Fields inherited from class com.primix.tapestry.AbstractResponseWriter
openTag, writer
 
Constructor Summary
NestedWMLResponseWriter(IResponseWriter parent)
           
 
Method Summary
 void close()
          Invokes the super-class implementation, then gets the data accumulated in the internal buffer and provides it to the containing writer using IResponseWriter.printRaw(char[], int, int).
 
Methods inherited from class com.primix.tapestry.wml.WMLResponseWriter
getContentType, getEntities, getNestedWriter, getSafe
 
Methods inherited from class com.primix.tapestry.AbstractResponseWriter
attribute, attribute, attribute, begin, beginEmpty, checkError, closeTag, comment, end, end, flush, pop, print, print, print, print, println, printRaw, printRaw, push
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

NestedWMLResponseWriter

public NestedWMLResponseWriter(IResponseWriter parent)
Method Detail

close

public void close()
Invokes the super-class implementation, then gets the data accumulated in the internal buffer and provides it to the containing writer using IResponseWriter.printRaw(char[], int, int).
Overrides:
close in class AbstractResponseWriter