KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > enhydra > jawe > xml > elements > Documentation


1 /* Documentation.java
2  *
3  * Authors:
4  * Stefanovic Nenad chupo@iis.ns.ac.yu
5  * Bojanic Sasa sasaboy@neobee.net
6  * Puskas Vladimir vpuskas@eunet.yu
7  * Pilipovic Goran zboniek@uns.ac.yu
8  *
9  */

10
11 package org.enhydra.jawe.xml.elements;
12
13 import org.enhydra.jawe.xml.*;
14 import org.enhydra.jawe.xml.panels.*;
15
16 /**
17 * Represents a WfMC DTD element that has the similar name.
18 *
19 * @see XML
20 */

21 public class Documentation extends XMLSimpleElement {
22
23    /**
24    * Prepares the panel for choosing documentation for
25    * some XML element.
26    *
27    * @return XMLPanel to be shown.
28    */

29    public XMLPanel getPanel () {
30       return new XMLLocationPanel(this);
31    }
32 }
33
Popular Tags