Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
RedFerret61 authored Jan 9, 2022
1 parent 71a3584 commit 63e1f15
Show file tree
Hide file tree
Showing 87 changed files with 6,300 additions and 0 deletions.
Binary file added src/uk/zoom/g92tt/G9RPG.class
Binary file not shown.
797 changes: 797 additions & 0 deletions src/uk/zoom/g92tt/G9RPG.java

Large diffs are not rendered by default.

Binary file added src/uk/zoom/g92tt/generated/ARRM.class
Binary file not shown.
184 changes: 184 additions & 0 deletions src/uk/zoom/g92tt/generated/ARRM.java
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>
* &lt;complexType>
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element ref="{}Target"/>
* &lt;element ref="{}Min"/>
* &lt;element ref="{}Max"/>
* &lt;element ref="{}Wave"/>
* &lt;element ref="{}Sync"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/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 added src/uk/zoom/g92tt/generated/Amp.class
Binary file not shown.
Loading

0 comments on commit 63e1f15

Please sign in to comment.