Package org.oasisopen.odata.csdl.v4
Class TOnDelete
- java.lang.Object
-
- org.oasisopen.odata.csdl.v4.TOnDelete
-
public class TOnDelete extends Object
Java class for TOnDelete complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="TOnDelete"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element ref="{http://docs.oasis-open.org/odata/ns/edm}Annotation" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="Action" use="required" type="{http://docs.oasis-open.org/odata/ns/edm}TOnDeleteAction" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected TOnDeleteActionactionprotected List<Annotation>annotation
-
Constructor Summary
Constructors Constructor Description TOnDelete()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TOnDeleteActiongetAction()Gets the value of the action property.List<Annotation>getAnnotation()Gets the value of the annotation property.voidsetAction(TOnDeleteAction value)Sets the value of the action property.
-
-
-
Field Detail
-
annotation
protected List<Annotation> annotation
-
action
protected TOnDeleteAction action
-
-
Method Detail
-
getAnnotation
public List<Annotation> getAnnotation()
Gets the value of the annotation 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 annotation property.For example, to add a new item, do as follows:
getAnnotation().add(newItem);Objects of the following type(s) are allowed in the list
Annotation
-
getAction
public TOnDeleteAction getAction()
Gets the value of the action property.- Returns:
- possible object is
TOnDeleteAction
-
setAction
public void setAction(TOnDeleteAction value)
Sets the value of the action property.- Parameters:
value- allowed object isTOnDeleteAction
-
-