1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| /**
* <p>Java class for Circuit complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="Circuit">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="NbOfComponents" type="{http://www.w3.org/2001/XMLSchema}unsignedInt"/>
* <element name="Component" type="{}Component" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Circuit", propOrder = {
"nbOfComponents",
"component"
})
@XmlRootElement
public class Circuit {
...........
} |
Partager