Class Case
- java.lang.Object
-
- de.hybris.platform.processengine.definition.xml.Case
-
public class Case extends java.lang.ObjectJava class for case complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="case"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="choice" type="{http://www.hybris.de/xsd/processdefinition}choice" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="event" use="required" type="{http://www.hybris.de/xsd/processdefinition}name" /> </restriction> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Case()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Choice>getChoice()Gets the value of the choice property.java.lang.StringgetEvent()Gets the value of the event property.voidsetEvent(java.lang.String value)Sets the value of the event property.
-
-
-
Field Detail
-
choice
protected java.util.List<Choice> choice
-
event
protected java.lang.String event
-
-
Method Detail
-
getChoice
public java.util.List<Choice> getChoice()
Gets the value of the choice 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
setmethod for the choice property.For example, to add a new item, do as follows:
getChoice().add(newItem);Objects of the following type(s) are allowed in the list
Choice
-
getEvent
public java.lang.String getEvent()
Gets the value of the event property.- Returns:
- possible object is
String
-
setEvent
public void setEvent(java.lang.String value)
Sets the value of the event property.- Parameters:
value- allowed object isString
-
-