/* * (c) Copyright 2010-2011 AgileBirds * * This file is part of OpenFlexo. * * OpenFlexo is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * OpenFlexo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenFlexo. If not, see <http://www.gnu.org/licenses/>. * */ // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.1.5-b01-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: 2008.02.08 at 10:43:57 AM CET // package org.oasis_open.docs.wsbpel._2_0.process.executable; import java.util.ArrayList; import java.util.List; import javax.xml.bind.JAXBElement; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElementRef; import javax.xml.bind.annotation.XmlElementRefs; import javax.xml.bind.annotation.XmlType; /** * <p> * Java class for tOnAlarmEvent complex type. * * <p> * The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="tOnAlarmEvent"> * <complexContent> * <extension base="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}tExtensibleElements"> * <sequence> * <choice> * <sequence> * <group ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}forOrUntilGroup"/> * <element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}repeatEvery" minOccurs="0"/> * </sequence> * <element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}repeatEvery"/> * </choice> * <element ref="{http://docs.oasis-open.org/wsbpel/2.0/process/executable}scope"/> * </sequence> * </extension> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "tOnAlarmEvent", propOrder = { "rest" }) public class TOnAlarmEvent extends TExtensibleElements { @XmlElementRefs({ @XmlElementRef(name = "repeatEvery", namespace = "http://docs.oasis-open.org/wsbpel/2.0/process/executable", type = JAXBElement.class), @XmlElementRef(name = "for", namespace = "http://docs.oasis-open.org/wsbpel/2.0/process/executable", type = JAXBElement.class), @XmlElementRef(name = "until", namespace = "http://docs.oasis-open.org/wsbpel/2.0/process/executable", type = JAXBElement.class), @XmlElementRef(name = "scope", namespace = "http://docs.oasis-open.org/wsbpel/2.0/process/executable", type = JAXBElement.class) }) protected List<JAXBElement<?>> rest; /** * Gets the rest of the content model. * * <p> * You are getting this "catch-all" property because of the following reason: The field name "RepeatEvery" is used by two different * parts of a schema. See: line 395 of file:/Users/jfallon/Documents/SOA/Schema_BPEL_oasis/ws-bpel_executable.xsd line 393 of * file:/Users/jfallon/Documents/SOA/Schema_BPEL_oasis/ws-bpel_executable.xsd * <p> * To get rid of this property, apply a property customization to one of both of the following declarations to change their names: Gets * the value of the rest property. * * <p> * 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 <CODE>set</CODE> method for the rest property. * * <p> * For example, to add a new item, do as follows: * * <pre> * getRest().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list {@link JAXBElement }{@code <}{@link TDeadlineExpr }{@code >} * {@link JAXBElement }{@code <}{@link TDurationExpr }{@code >} {@link JAXBElement }{@code <}{@link TDurationExpr }{@code >} * {@link JAXBElement }{@code <}{@link TScope }{@code >} * * */ public List<JAXBElement<?>> getRest() { if (rest == null) { rest = new ArrayList<JAXBElement<?>>(); } return this.rest; } }