1
2
3
4
5
6
7
8
9 package net.sf.jour.config;
10
11
12 /***
13 * Java content class for typedef element declaration.
14 * <p>The following schema fragment specifies the expected content contained within this java content object. (defined at file:/C:/work/java/jour/jour_pg/src/resources/jour.xsd line 27)
15 * <p>
16 * <pre>
17 * <element name="typedef" type="{http://www.w3.org/2001/XMLSchema}string"/>
18 * </pre>
19 *
20 */
21 public interface Typedef
22 extends javax.xml.bind.Element
23 {
24
25
26 /***
27 * Gets the value of the value property.
28 *
29 * @return
30 * possible object is
31 * {@link java.lang.String}
32 */
33 java.lang.String getValue();
34
35 /***
36 * Sets the value of the value property.
37 *
38 * @param value
39 * allowed object is
40 * {@link java.lang.String}
41 */
42 void setValue(java.lang.String value);
43
44 }