KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* Icon.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 Icon extends XMLSimpleElement {
22    /**
23    * Prepares the panel for choosing icon for
24    * some XML element.
25    *
26    * @return XMLPanel to be shown.
27    */

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