KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > web > html > Impl > EmptyHTMLDocument


1 package org.jahia.clipbuilder.html.web.html.Impl;
2
3 import org.jahia.clipbuilder.html.web.html.*;
4 import org.jahia.clipbuilder.html.bean.*;
5 import org.w3c.dom.*;
6 import javax.xml.parsers.*;
7 import java.util.*;
8
9 /**
10  * Description of the Class
11  *
12  *@author Tlili Khaled
13  */

14 public class EmptyHTMLDocument implements HTMLDocument {
15     private UrlBean urlBean;
16     private List framesList;
17
18
19     /**
20      * Constructor for the EmptyHTMLDocument object
21      *
22      *@param urlBean Description of Parameter
23      */

24     public EmptyHTMLDocument(UrlBean urlBean) {
25         setUrlBean(urlBean);
26     }
27
28
29     /**
30      * Sets the UrlBean attribute of the HTMLDocument object
31      *
32      *@param urlBean The new UrlBean value
33      */

34     public void setUrlBean(UrlBean urlBean) {
35         this.urlBean = urlBean;
36     }
37
38
39     /**
40      * Sets the FramesList attribute of the EmptyHTMLDocument object
41      *
42      *@param framesList The new FramesList value
43      */

44     public void setFramesList(List framesList) {
45         this.framesList = framesList;
46     }
47
48
49     /**
50      * Gets the W3CDocument attribute of the HTMLDocument object
51      *
52      *@return The W3CDocument value
53      */

54     public org.jdom.Document getJDOMTransformedDocument() {
55         return new org.jdom.Document();
56     }
57
58
59     /**
60      * Gets the ChewDocumentAsString attribute of the HTMLDocument object
61      *
62      *@param tagName Description of Parameter
63      *@return The ChewDocumentAsString value
64      */

65     public String JavaDoc getChewDocumentAsString(String JavaDoc tagName) {
66         return "";
67     }
68
69
70     /**
71      * Gets the UserDocumentAsString attribute of the EmptyHTMLDocument object
72      *
73      *@return The UserDocumentAsString value
74      */

75     public String JavaDoc getUserDocumentAsString() {
76         return "";
77     }
78
79
80
81     /**
82      * Gets the DocumentWhithParamLabelAsString attribute of the HTMLDocument
83      * object
84      *
85      *@return The DocumentWhithParamLabelAsString value
86      */

87     public String JavaDoc getDocumentWhithParamLabelAsString() {
88         return "";
89     }
90
91
92     /**
93      * Gets the OriginalDocumentAsString attribute of the HTMLDocument object
94      *
95      *@return The OriginalDocumentAsString value
96      */

97     public String JavaDoc getOriginalDocumentAsString() {
98         return "";
99     }
100
101
102     /**
103      * Gets the SelectPartFromHash attribute of the HTMLDocument object
104      *
105      *@param hash Description of Parameter
106      *@return The SelectPartFromHash value
107      */

108     public String JavaDoc getSelectPartFromHash(String JavaDoc hash) {
109         return "";
110     }
111
112
113     /**
114      * Gets the TransformedDocumentAsString attribute of the HTMLDocument object
115      *
116      *@return The TransformedDocumentAsString value
117      */

118     public String JavaDoc getTransformedDocumentAsString() {
119         return "";
120     }
121
122
123     /**
124      * Gets the Transformer attribute of the EmptyHTMLDocument object
125      *
126      *@return The Transformer value
127      */

128     public HTMLTransformer getTransformer() {
129         return null;
130     }
131
132
133
134     /**
135      * Gets the UrlBean attribute of the HTMLDocument object
136      *
137      *@return The UrlBean value
138      */

139     public UrlBean getUrlBean() {
140         return this.urlBean;
141     }
142
143
144     /**
145      * Gets the FramesList attribute of the EmptyHTMLDocument object
146      *
147      *@return The FramesList value
148      */

149     public List getFramesList() {
150         return framesList;
151     }
152
153
154     /**
155      * Gets the Errors attribute of the HTMLDocument object
156      *
157      *@return The Errors value
158      */

159     public java.util.List JavaDoc getTransformationErrors() {
160         return new java.util.ArrayList JavaDoc();
161     }
162
163
164     /**
165      * Gets the CharEncoding attribute of the EmptyHTMLDocument object
166      *
167      *@return The CharEncoding value
168      */

169     public String JavaDoc getCharEncoding() {
170         return "";
171     }
172
173 }
174
Popular Tags