-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71a3584
commit 63e1f15
Showing
87 changed files
with
6,300 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,184 @@ | ||
// | ||
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1-b02-fcs | ||
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> | ||
// Any modifications to this file will be lost upon recompilation of the source schema. | ||
// Generated on: 2007.11.23 at 05:56:36 PM GMT | ||
// | ||
|
||
|
||
package uk.zoom.g92tt.generated; | ||
|
||
import javax.xml.bind.annotation.XmlAccessType; | ||
import javax.xml.bind.annotation.XmlAccessorType; | ||
import javax.xml.bind.annotation.XmlElement; | ||
import javax.xml.bind.annotation.XmlRootElement; | ||
import javax.xml.bind.annotation.XmlType; | ||
|
||
|
||
|
||
/** | ||
* <p>Java class for anonymous complex type. | ||
* | ||
* <p>The following schema fragment specifies the expected content contained within this class. | ||
* | ||
* <pre> | ||
* <complexType> | ||
* <complexContent> | ||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> | ||
* <sequence> | ||
* <element ref="{}Target"/> | ||
* <element ref="{}Min"/> | ||
* <element ref="{}Max"/> | ||
* <element ref="{}Wave"/> | ||
* <element ref="{}Sync"/> | ||
* </sequence> | ||
* </restriction> | ||
* </complexContent> | ||
* </complexType> | ||
* </pre> | ||
* | ||
* | ||
*/ | ||
@XmlAccessorType(XmlAccessType.FIELD) | ||
@XmlType(name = "", propOrder = { | ||
"target", | ||
"min", | ||
"max", | ||
"wave", | ||
"sync" | ||
}) | ||
@XmlRootElement(name = "ARRM") | ||
public class ARRM { | ||
|
||
@XmlElement(name = "Target", required = true) | ||
protected Target target; | ||
@XmlElement(name = "Min", required = true) | ||
protected Min min; | ||
@XmlElement(name = "Max", required = true) | ||
protected Max max; | ||
@XmlElement(name = "Wave", required = true) | ||
protected Wave wave; | ||
@XmlElement(name = "Sync", required = true) | ||
protected Sync sync; | ||
|
||
/** | ||
* Gets the value of the target property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link Target } | ||
* | ||
*/ | ||
public Target getTarget() { | ||
return target; | ||
} | ||
|
||
/** | ||
* Sets the value of the target property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link Target } | ||
* | ||
*/ | ||
public void setTarget(Target value) { | ||
this.target = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the min property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link Min } | ||
* | ||
*/ | ||
public Min getMin() { | ||
return min; | ||
} | ||
|
||
/** | ||
* Sets the value of the min property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link Min } | ||
* | ||
*/ | ||
public void setMin(Min value) { | ||
this.min = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the max property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link Max } | ||
* | ||
*/ | ||
public Max getMax() { | ||
return max; | ||
} | ||
|
||
/** | ||
* Sets the value of the max property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link Max } | ||
* | ||
*/ | ||
public void setMax(Max value) { | ||
this.max = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the wave property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link Wave } | ||
* | ||
*/ | ||
public Wave getWave() { | ||
return wave; | ||
} | ||
|
||
/** | ||
* Sets the value of the wave property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link Wave } | ||
* | ||
*/ | ||
public void setWave(Wave value) { | ||
this.wave = value; | ||
} | ||
|
||
/** | ||
* Gets the value of the sync property. | ||
* | ||
* @return | ||
* possible object is | ||
* {@link Sync } | ||
* | ||
*/ | ||
public Sync getSync() { | ||
return sync; | ||
} | ||
|
||
/** | ||
* Sets the value of the sync property. | ||
* | ||
* @param value | ||
* allowed object is | ||
* {@link Sync } | ||
* | ||
*/ | ||
public void setSync(Sync value) { | ||
this.sync = value; | ||
} | ||
|
||
} |
Binary file not shown.
Oops, something went wrong.