1 // 2 // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 3 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 4 // Any modifications to this file will be lost upon recompilation of the source schema. 5 // Generated on: 2016.02.15 at 02:35:27 PM CET 6 // 7 8 9 package eu.fbk.dkm.premon.premonitor.verbnet; 10 11 import java.util.ArrayList; 12 import java.util.List; 13 import javax.xml.bind.annotation.XmlAccessType; 14 import javax.xml.bind.annotation.XmlAccessorType; 15 import javax.xml.bind.annotation.XmlElement; 16 import javax.xml.bind.annotation.XmlRootElement; 17 import javax.xml.bind.annotation.XmlType; 18 19 20 /** 21 * 22 */ 23 @XmlAccessorType(XmlAccessType.FIELD) 24 @XmlType(name = "", propOrder = { 25 "pred" 26 }) 27 @XmlRootElement(name = "SEMANTICS") 28 public class SEMANTICS { 29 30 @XmlElement(name = "PRED", required = true) 31 protected List<PRED> pred; 32 33 /** 34 * Gets the value of the pred property. 35 * 36 * <p> 37 * This accessor method returns a reference to the live list, 38 * not a snapshot. Therefore any modification you make to the 39 * returned list will be present inside the JAXB object. 40 * This is why there is not a <CODE>set</CODE> method for the pred property. 41 * 42 * <p> 43 * For example, to add a new item, do as follows: 44 * <pre> 45 * getPRED().add(newItem); 46 * </pre> 47 * 48 * 49 * <p> 50 * Objects of the following type(s) are allowed in the list 51 * {@link PRED } 52 * 53 * 54 */ 55 public List<PRED> getPRED() { 56 if (pred == null) { 57 pred = new ArrayList<PRED>(); 58 } 59 return this.pred; 60 } 61 62 }