KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > application > web > talk > messaging > XMLFormResponseElement


1 /*
2  * XMLFormResponseElement.java
3  *
4  * Created on June 9, 2002, 2:27 AM
5  */

6
7 package com.quikj.application.web.talk.messaging;
8
9 /**
10  *
11  * @author amit
12  */

13 public class XMLFormResponseElement extends XMLFormRequestElement
14 {
15     
16     /** Creates a new instance of XMLFormResponseElement */
17     public XMLFormResponseElement()
18     {
19         super();
20     }
21     
22     public String JavaDoc format()
23     {
24         return "<xml-form-rsp><![CDATA[" + xmlForm + "]]></xml-form-rsp>\n";
25     }
26     
27 }
28
Popular Tags