View Javadoc

1   package org.fosstrak.epcis.model;
2   
3   import java.util.ArrayList;
4   import java.util.List;
5   import javax.xml.bind.annotation.XmlAccessType;
6   import javax.xml.bind.annotation.XmlAccessorType;
7   import javax.xml.bind.annotation.XmlElement;
8   import javax.xml.bind.annotation.XmlType;
9   
10  /**
11   * <p>
12   * Java class for BusinessScope complex type.
13   * <p>
14   * The following schema fragment specifies the expected content contained within
15   * this class.
16   * 
17   * <pre>
18   * &lt;complexType name="BusinessScope">
19   *   &lt;complexContent>
20   *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
21   *       &lt;sequence>
22   *         &lt;element name="Scope" type="{http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader}Scope" maxOccurs="unbounded" minOccurs="0"/>
23   *       &lt;/sequence>
24   *     &lt;/restriction>
25   *   &lt;/complexContent>
26   * &lt;/complexType>
27   * </pre>
28   */
29  @XmlAccessorType(XmlAccessType.FIELD)
30  @XmlType(name = "BusinessScope", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader", propOrder = { "scope" })
31  public class BusinessScope {
32  
33      @XmlElement(name = "Scope", namespace = "http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader")
34      protected List<Scope> scope;
35  
36      /**
37       * Gets the value of the scope property.
38       * <p>
39       * This accessor method returns a reference to the live list, not a
40       * snapshot. Therefore any modification you make to the returned list will
41       * be present inside the JAXB object. This is why there is not a
42       * <CODE>set</CODE> method for the scope property.
43       * <p>
44       * For example, to add a new item, do as follows:
45       * 
46       * <pre>
47       * getScope().add(newItem);
48       * </pre>
49       * <p>
50       * Objects of the following type(s) are allowed in the list {@link Scope }
51       */
52      public List<Scope> getScope() {
53          if (scope == null) {
54              scope = new ArrayList<Scope>();
55          }
56          return this.scope;
57      }
58  
59  }