KickJava   Java API By Example, From Geeks To Geeks.

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


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: FrameTreeHTML.java,v 1.2 2005/01/26 08:29:25 jkjome Exp $
22  */

23
24 package org.enhydra.xml.xmlc.html;
25
26 /**
27  * Interface, originally generated from input/FrameTree.html, but handed
28  * edited to be the minimal needed to use classes compiled from this file in
29  * tests. This gives us the ability to generate different classes in
30  * different ways and still test the access methods. The constants have been
31  * removed, as we want to make sure they are generated.
32  */

33 public interface FrameTreeHTML extends org.enhydra.xml.xmlc.html.HTMLObject {
34     /**
35      * Get the element with id <CODE>IMG1</CODE>.
36      * @see org.w3c.dom.html.HTMLImageElement
37      */

38     public org.w3c.dom.html.HTMLImageElement getElementIMG1();
39
40     /**
41      * Get the element with id <CODE>IMG2</CODE>.
42      * @see org.w3c.dom.html.HTMLImageElement
43      */

44     public org.w3c.dom.html.HTMLImageElement getElementIMG2();
45
46     /**
47      * Get the element with id <CODE>IMG3</CODE>.
48      * @see org.w3c.dom.html.HTMLImageElement
49      */

50     public org.w3c.dom.html.HTMLImageElement getElementIMG3();
51
52     /**
53      * Get the element with id <CODE>IMG4</CODE>.
54      * @see org.w3c.dom.html.HTMLImageElement
55      */

56     public org.w3c.dom.html.HTMLImageElement getElementIMG4();
57
58     /**
59      * Get the element with id <CODE>placeholderScript</CODE>.
60      * @see org.w3c.dom.html.HTMLScriptElement
61      */

62     public org.w3c.dom.html.HTMLScriptElement getElementPlaceholderScript();
63
64     /**
65      * Get the element with id <CODE>table</CODE>.
66      * @see org.w3c.dom.html.HTMLTableElement
67      */

68     public org.w3c.dom.html.HTMLTableElement getElementTable();
69 }
70
Popular Tags