All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hello2morrow.sonarplugin.xsd.XsdCycleGroup Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.04.13 at 10:09:03 AM MESZ 
//


package com.hello2morrow.sonarplugin.xsd;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for xsdCycleGroup complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="xsdCycleGroup">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="cyclePath" type="{}xsdCyclePath" maxOccurs="unbounded"/>
 *       </sequence>
 *       <attribute name="elementScope" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="parent" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="description" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="namedElementGroup" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "xsdCycleGroup", propOrder = { "cyclePath" }) public class XsdCycleGroup { @XmlElement(required = true) protected List cyclePath; @XmlAttribute(required = true) protected String elementScope; @XmlAttribute(required = true) protected String parent; @XmlAttribute(required = true) protected String description; @XmlAttribute(required = true) protected String namedElementGroup; /** * Gets the value of the cyclePath property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the cyclePath property. * *

* For example, to add a new item, do as follows: *

     *    getCyclePath().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link XsdCyclePath } * * */ public List getCyclePath() { if (cyclePath == null) { cyclePath = new ArrayList(); } return this.cyclePath; } /** * Gets the value of the elementScope property. * * @return * possible object is * {@link String } * */ public String getElementScope() { return elementScope; } /** * Sets the value of the elementScope property. * * @param value * allowed object is * {@link String } * */ public void setElementScope(String value) { this.elementScope = value; } /** * Gets the value of the parent property. * * @return * possible object is * {@link String } * */ public String getParent() { return parent; } /** * Sets the value of the parent property. * * @param value * allowed object is * {@link String } * */ public void setParent(String value) { this.parent = value; } /** * Gets the value of the description property. * * @return * possible object is * {@link String } * */ public String getDescription() { return description; } /** * Sets the value of the description property. * * @param value * allowed object is * {@link String } * */ public void setDescription(String value) { this.description = value; } /** * Gets the value of the namedElementGroup property. * * @return * possible object is * {@link String } * */ public String getNamedElementGroup() { return namedElementGroup; } /** * Sets the value of the namedElementGroup property. * * @param value * allowed object is * {@link String } * */ public void setNamedElementGroup(String value) { this.namedElementGroup = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy