1 /* Xpression.java2 *3 * Authors:4 * Stefanovic Nenad chupo@iis.ns.ac.yu5 * Bojanic Sasa sasaboy@neobee.net6 * Puskas Vladimir vpuskas@eunet.yu7 * Pilipovic Goran zboniek@uns.ac.yu8 *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 replacement17 /**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