Class Logic
Java class for logic complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="logic"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="perform" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="delegate" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="view" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="cancel" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <element name="finish" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> <choice minOccurs="0"> <element name="assigned" type="{http://www.w3.org/2001/XMLSchema}boolean"/> <element name="assign" type="{http://www.w3.org/2001/XMLSchema}boolean"/> </choice> <element name="behavior" type="{}behavior" maxOccurs="unbounded" minOccurs="0"/> <element name="action" type="{}action" maxOccurs="unbounded" minOccurs="0"/> <element name="actionRef" type="{}actionRef" maxOccurs="unbounded" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the value of the action property.Gets the value of the actionRef property.Gets the value of the behavior property.isAssign()
Gets the value of the assign property.Gets the value of the assigned property.isCancel()
Gets the value of the cancel property.Gets the value of the delegate property.isFinish()
Gets the value of the finish property.Gets the value of the perform property.isView()
Gets the value of the view property.void
Sets the value of the assign property.void
setAssigned
(Boolean value) Sets the value of the assigned property.void
Sets the value of the cancel property.void
setDelegate
(Boolean value) Sets the value of the delegate property.void
Sets the value of the finish property.void
setPerform
(Boolean value) Sets the value of the perform property.void
Sets the value of the view property.
-
Field Details
-
perform
-
delegate
-
view
-
cancel
-
finish
-
assigned
-
assign
-
behavior
-
action
-
actionRef
-
-
Constructor Details
-
Logic
public Logic()
-
-
Method Details
-
isPerform
Gets the value of the perform property.- Returns:
- possible object is
Boolean
-
setPerform
Sets the value of the perform property.- Parameters:
value
- allowed object isBoolean
-
isDelegate
Gets the value of the delegate property.- Returns:
- possible object is
Boolean
-
setDelegate
Sets the value of the delegate property.- Parameters:
value
- allowed object isBoolean
-
isView
Gets the value of the view property.- Returns:
- possible object is
Boolean
-
setView
Sets the value of the view property.- Parameters:
value
- allowed object isBoolean
-
isCancel
Gets the value of the cancel property.- Returns:
- possible object is
Boolean
-
setCancel
Sets the value of the cancel property.- Parameters:
value
- allowed object isBoolean
-
isFinish
Gets the value of the finish property.- Returns:
- possible object is
Boolean
-
setFinish
Sets the value of the finish property.- Parameters:
value
- allowed object isBoolean
-
isAssigned
Gets the value of the assigned property.- Returns:
- possible object is
Boolean
-
setAssigned
Sets the value of the assigned property.- Parameters:
value
- allowed object isBoolean
-
isAssign
Gets the value of the assign property.- Returns:
- possible object is
Boolean
-
setAssign
Sets the value of the assign property.- Parameters:
value
- allowed object isBoolean
-
getBehavior
Gets the value of the behavior 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
set
method for the behavior property.For example, to add a new item, do as follows:
getBehavior().add(newItem);
Objects of the following type(s) are allowed in the list
Behavior
-
getAction
Gets the value of the action 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
set
method for the action property.For example, to add a new item, do as follows:
getAction().add(newItem);
Objects of the following type(s) are allowed in the list
Action
-
getActionRef
Gets the value of the actionRef 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
set
method for the actionRef property.For example, to add a new item, do as follows:
getActionRef().add(newItem);
Objects of the following type(s) are allowed in the list
ActionRef
-