KickJava   Java API By Example, From Geeks To Geeks.

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


1 /* Xpression.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 // This is not a real definition, but it's simple type replacement
17
/**
18 * Represents a WfMC DTD element that has the similar name.
19 * <p>NOTE: This element is not implemented as WfMC requires.
20 */

21 public class Xpression extends XMLSimpleElement {//DTDComplexElement {
22
/**
23    * Prepares the panel for expression definition.
24    *
25    * @return XMLPanel to be shown.
26    */

27    public XMLPanel getPanel () {
28       return new XMLMultiLineTextPanel(this);
29    }
30
31 /*
32    <xsd:complexType mixed="true">
33       <xsd:choice minOccurs="0" maxOccurs="unbounded">
34          <xsd:any minOccurs="0" maxOccurs="unbounded"/>
35       </xsd:choice>
36    </xsd:complexType>
37 </xsd:element>
38 */

39
40 }
41
Popular Tags