KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > lutris > airsent > presentation > messenger > DisplayPage


1 /*
2  * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
3  * Reserved.
4  *
5  * This source code file is distributed by Lutris Technologies, Inc. for
6  * use only by licensed users of product(s) that include this source
7  * file. Use of this source file or the software that uses it is covered
8  * by the terms and conditions of the Lutris Enhydra Development License
9  * Agreement included with this product.
10  *
11  * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
12  * ANY KIND, either express or implied. See the License for the specific terms
13  * governing rights and limitations under the License.
14  *
15  * Contributor(s):
16  *
17  * $Id: DisplayPage.java,v 1.1 2004/08/16 09:33:18 slobodan Exp $
18  */

19
20 package com.lutris.airsent.presentation.messenger;
21
22 import org.w3c.dom.*;
23 import org.enhydra.xml.xmlc.XMLObject;
24
25 /**
26  * Interface declaration
27  *
28  *
29  * @author
30  * @version %I%, %G%
31  */

32 public interface DisplayPage extends XMLObject {
33
34     /**
35      * Gets the error tag.
36      *
37      *
38      * @return
39      *
40      *
41      */

42     public Element getTagErrorText();
43
44     /**
45      * Gets the Display Template Name
46      *
47      *
48      * @return
49      *
50      *
51      */

52     public Element getTagDisplayTemplateName();
53
54     /**
55      * Gets the template row
56      *
57      *
58      * @return
59      *
60      *
61      */

62     public Element getTagDisplayTemplateRow();
63
64     /**
65      * Gets the Template Complete Element
66      *
67      *
68      * @return
69      *
70      *
71      */

72     public Element getTagDisplayTemplateComplete();
73
74     /**
75      * gets the name tag.
76      *
77      *
78      * @return
79      *
80      *
81      */

82     public Element getTagNameField();
83
84     
85     /**
86      *Sets the error text.
87      *
88      */

89     public void setTextErrorText(String JavaDoc name);
90
91
92     /**
93      *Sets the name field text.
94      *
95      */

96     public void setTextNameField(String JavaDoc name);
97
98
99      /**
100      *Sets the name field text.
101      *
102      */

103     public void setTextDisplayTemplateName(String JavaDoc name);
104
105
106      /**
107      *Sets the link text.
108      *
109      */

110     public void setTextDisplayTemplateComplete(String JavaDoc name);
111
112 }
113
114
115
116
Popular Tags