001: /*
002: * Copyright (c) 1999-2001 Lutris Technologies, Inc. All Rights
003: * Reserved.
004: *
005: * This source code file is distributed by Lutris Technologies, Inc. for
006: * use only by licensed users of product(s) that include this source
007: * file. Use of this source file or the software that uses it is covered
008: * by the terms and conditions of the Lutris Enhydra Development License
009: * Agreement included with this product.
010: *
011: * This Software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF
012: * ANY KIND, either express or implied. See the License for the specific terms
013: * governing rights and limitations under the License.
014: *
015: * Contributor(s):
016: *
017: * $Id: DisplayPage.java,v 1.1 2006-09-11 12:29:26 sinisa Exp $
018: */
019:
020: package com.lutris.airsent.presentation.messenger;
021:
022: import org.w3c.dom.*;
023: import org.enhydra.xml.xmlc.XMLObject;
024:
025: /**
026: * Interface declaration
027: *
028: *
029: * @author
030: * @version %I%, %G%
031: */
032: public interface DisplayPage extends XMLObject {
033:
034: /**
035: * Gets the error tag.
036: *
037: *
038: * @return
039: *
040: *
041: */
042: public Element getTagErrorText();
043:
044: /**
045: * Gets the Display Template Name
046: *
047: *
048: * @return
049: *
050: *
051: */
052: public Element getTagDisplayTemplateName();
053:
054: /**
055: * Gets the template row
056: *
057: *
058: * @return
059: *
060: *
061: */
062: public Element getTagDisplayTemplateRow();
063:
064: /**
065: * Gets the Template Complete Element
066: *
067: *
068: * @return
069: *
070: *
071: */
072: public Element getTagDisplayTemplateComplete();
073:
074: /**
075: * gets the name tag.
076: *
077: *
078: * @return
079: *
080: *
081: */
082: public Element getTagNameField();
083:
084: /**
085: *Sets the error text.
086: *
087: */
088: public void setTextErrorText(String name);
089:
090: /**
091: *Sets the name field text.
092: *
093: */
094: public void setTextNameField(String name);
095:
096: /**
097: *Sets the name field text.
098: *
099: */
100: public void setTextDisplayTemplateName(String name);
101:
102: /**
103: *Sets the link text.
104: *
105: */
106: public void setTextDisplayTemplateComplete(String name);
107:
108: }
|