1
2
3
4
5
6
7
8
9 package org.xmlhammer.model.tools.xslt;
10
11 import javax.xml.bind.annotation.XmlAccessType;
12 import javax.xml.bind.annotation.XmlAccessorType;
13 import javax.xml.bind.annotation.XmlRootElement;
14 import javax.xml.bind.annotation.XmlType;
15 import org.xmlhammer.model.jaxp.StringProperty;
16
17
18 /***
19 * <p>Java class for outputProperty element declaration.
20 *
21 * <p>The following schema fragment specifies the expected content contained within this class.
22 *
23 * <pre>
24 * <element name="outputProperty">
25 * <complexType>
26 * <complexContent>
27 * <extension base="{http://www.xmlhammer.org/2007/jaxp}stringProperty">
28 * </extension>
29 * </complexContent>
30 * </complexType>
31 * </element>
32 * </pre>
33 *
34 *
35 */
36 @XmlAccessorType(XmlAccessType.FIELD)
37 @XmlType(name = "")
38 @XmlRootElement(name = "outputProperty")
39 public class OutputProperty
40 extends StringProperty
41 {
42
43
44 }