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: DetailsPage.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 for DetailsPage.
027: *
028: *
029: * @author
030: * @version %I%, %G%
031: */
032: public interface DetailsPage extends XMLObject {
033:
034: /**
035: * Method declaration
036: *
037: *
038: * @return
039: *
040: *
041: */
042: public Element getTagErrorText();
043:
044: /**
045: * Method declaration
046: *
047: *
048: * @return
049: *
050: *
051: */
052: public Element getTagName();
053:
054: /**
055: * Method declaration
056: *
057: *
058: * @return
059: *
060: *
061: */
062: public Element getTagDirections();
063:
064: /**
065: * Method declaration
066: *
067: *
068: * @return
069: *
070: *
071: */
072: public Element getTagAddress();
073:
074: /**
075: * Method declaration
076: *
077: *
078: * @return
079: *
080: *
081: */
082: public Element getTagComplete();
083:
084: /**
085: *Sets the error text.
086: *
087: */
088: public void setTextErrorText(String name);
089:
090: /**
091: *Sets the name text.
092: *
093: */
094: public void setTextName(String name);
095:
096: /**
097: *Sets the address text.
098: *
099: */
100: public void setTextAddress(String address);
101:
102: /**
103: *Sets the directions text.
104: *
105: */
106: public void setTextDirections(String name);
107:
108: }
|