KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jahia > clipbuilder > html > web > html > HTMLDocument


1 package org.jahia.clipbuilder.html.web.html;
2
3 import org.jahia.clipbuilder.html.bean.UrlBean;
4 import org.jahia.clipbuilder.html.web.HTMLDocumentBuilder;
5 import java.util.*;
6
7 /**
8  * Modelisation of a HTML document in the Clipper scope
9  *
10  *@author Tlili Khaled
11  */

12 public interface HTMLDocument {
13
14
15
16     /**
17      * Gets the FrameList attribute of the HTMLDocument object
18      *
19      *@return The FrameList value
20      */

21     public List getFramesList();
22
23
24     /**
25      * Gets the Transformer attribute of the HTMLDocument object
26      *
27      *@return The Transformer value
28      */

29     public HTMLTransformer getTransformer();
30
31
32
33     /**
34      * Gets the ChewDocumentAsString attribute of the HTMLDocument object
35      *
36      *@param tagName Description of Parameter
37      *@return The ChewDocumentAsString value
38      */

39     public String JavaDoc getChewDocumentAsString(String JavaDoc tagName);
40
41
42     /**
43      * Gets the DocumentWhithParamLabelAsString attribute of the HTMLDocument
44      * object
45      *
46      *@return The DocumentWhithParamLabelAsString value
47      */

48     public String JavaDoc getDocumentWhithParamLabelAsString();
49
50
51     /**
52      * Gets the OriginalDocumentAsString attribute of the HTMLDocument object
53      *
54      *@return The OriginalDocumentAsString value
55      */

56     public String JavaDoc getOriginalDocumentAsString();
57
58
59     /**
60      * Gets the HiddenUserDocumentAsString attribute of the HTMLDocument object
61      *
62      *@return The HiddenUserDocumentAsString value
63      */

64     public String JavaDoc getUserDocumentAsString();
65
66
67
68     /**
69      * Gets the TransformedDocumentAsString attribute of the HTMLDocument object
70      *
71      *@return The TransformedDocumentAsString value
72      */

73     public String JavaDoc getTransformedDocumentAsString();
74
75
76     /**
77      * Gets the UrlBean attribute of the HTMLDocument object
78      *
79      *@return The UrlBean value
80      */

81     public UrlBean getUrlBean();
82
83
84     /**
85      * Sets the UrlBean attribute of the HTMLDocument object
86      *
87      *@param urlBean The new UrlBean value
88      */

89     public void setUrlBean(UrlBean urlBean);
90
91
92     /**
93      * Gets the Errors attribute of the HTMLDocument object
94      *
95      *@return The Errors value
96      */

97     public java.util.List JavaDoc getTransformationErrors();
98
99
100
101 }
102
Popular Tags