KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > xml > xmlc > html > ShelfHTML


1  /*
2  * Enhydra Java Application Server Project
3  *
4  * The contents of this file are subject to the Enhydra Public License
5  * Version 1.1 (the "License"); you may not use this file except in
6  * compliance with the License. You may obtain a copy of the License on
7  * the Enhydra web site ( http://www.enhydra.org/ ).
8  *
9  * Software distributed under the License is distributed on an "AS IS"
10  * basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
11  * the License for the specific terms governing rights and limitations
12  * under the License.
13  *
14  * The Initial Developer of the Enhydra Application Server is Lutris
15  * Technologies, Inc. The Enhydra Application Server and portions created
16  * by Lutris Technologies, Inc. are Copyright Lutris Technologies, Inc.
17  * All Rights Reserved.
18  *
19  * Contributor(s):
20  *
21  * $Id: ShelfHTML.java,v 1.2 2005/01/26 08:29:25 jkjome Exp $
22  */

23 package org.enhydra.xml.xmlc.html;
24
25
26 /**
27  * Interface, originally generated from input/Shelf.html, but handed edited to
28  * be the minimal needed to use classes compiled from this file in tests.
29  */

30 public interface ShelfHTML extends org.enhydra.xml.xmlc.html.HTMLObject {
31     /**
32      * Get the element with id <CODE>list</CODE>.
33      * @see org.w3c.dom.html.HTMLDivElement
34      */

35     public org.w3c.dom.html.HTMLDivElement getElementList();
36
37     /**
38      * Get the element with id <CODE>sampleCatAnchor</CODE>.
39      * @see org.w3c.dom.html.HTMLAnchorElement
40      */

41     public org.w3c.dom.html.HTMLAnchorElement getElementSampleCatAnchor();
42
43     /**
44      * Get the element with id <CODE>sampleCatBlock</CODE>.
45      * @see org.w3c.dom.html.HTMLParagraphElement
46      */

47     public org.w3c.dom.html.HTMLParagraphElement getElementSampleCatBlock();
48
49     /**
50      * Get the element with id <CODE>sampleCatImg</CODE>.
51      * @see org.w3c.dom.html.HTMLImageElement
52      */

53     public org.w3c.dom.html.HTMLImageElement getElementSampleCatImg();
54
55     /**
56      * Get the element with id <CODE>sampleCatText</CODE>.
57      * @see org.w3c.dom.html.HTMLElement
58      */

59     public org.w3c.dom.html.HTMLElement getElementSampleCatText();
60
61     /**
62      * Get the element with id <CODE>sampleItemAnchor</CODE>.
63      * @see org.w3c.dom.html.HTMLAnchorElement
64      */

65     public org.w3c.dom.html.HTMLAnchorElement getElementSampleItemAnchor();
66
67     /**
68      * Get the element with id <CODE>sampleItemBlock</CODE>.
69      * @see org.w3c.dom.html.HTMLParagraphElement
70      */

71     public org.w3c.dom.html.HTMLParagraphElement getElementSampleItemBlock();
72
73     /**
74      * Get the element with id <CODE>sampleItemText</CODE>.
75      * @see org.w3c.dom.html.HTMLElement
76      */

77     public org.w3c.dom.html.HTMLElement getElementSampleItemText();
78
79     /**
80      * Get the value of text child of element <CODE>list</CODE>.
81      * @see org.w3c.dom.Text
82      */

83     public void setTextList(String JavaDoc text);
84
85     /**
86      * Get the value of text child of element <CODE>sampleCatBlock</CODE>.
87      * @see org.w3c.dom.Text
88      */

89     public void setTextSampleCatBlock(String JavaDoc text);
90
91     /**
92      * Get the value of text child of element <CODE>sampleCatText</CODE>.
93      * @see org.w3c.dom.Text
94      */

95     public void setTextSampleCatText(String JavaDoc text);
96
97     /**
98      * Get the value of text child of element <CODE>sampleItemAnchor</CODE>.
99      * @see org.w3c.dom.Text
100      */

101     public void setTextSampleItemAnchor(String JavaDoc text);
102
103     /**
104      * Get the value of text child of element <CODE>sampleItemBlock</CODE>.
105      * @see org.w3c.dom.Text
106      */

107     public void setTextSampleItemBlock(String JavaDoc text);
108
109     /**
110      * Get the value of text child of element <CODE>sampleItemText</CODE>.
111      * @see org.w3c.dom.Text
112      */

113     public void setTextSampleItemText(String JavaDoc text);
114
115 }
116
Popular Tags