org.plasma.query.model
Class Function

java.lang.Object
  extended by org.plasma.query.model.Function

public class Function
extends Object

Java class for Function complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="Function">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element ref="{http://www.servicelabs.org/plasma/query}FunctionArg" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
       <attribute name="name" use="required" type="{http://www.servicelabs.org/plasma/query}FunctionValues" />
     </restriction>
   </complexContent>
 </complexType>
 


Field Summary
protected  List<FunctionArg> functionArgs
           
protected  FunctionValues name
           
 
Constructor Summary
Function()
           
Function(FunctionValues name)
           
 
Method Summary
 List<FunctionArg> getFunctionArgs()
          Gets the value of the functionArgs property.
 FunctionValues getName()
          Gets the value of the name property.
 void setName(FunctionValues value)
          Sets the value of the name property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

functionArgs

protected List<FunctionArg> functionArgs

name

protected FunctionValues name
Constructor Detail

Function

public Function()

Function

public Function(FunctionValues name)
Method Detail

getFunctionArgs

public List<FunctionArg> getFunctionArgs()
Gets the value of the functionArgs 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 functionArgs property.

For example, to add a new item, do as follows:

    getFunctionArgs().add(newItem);
 

Objects of the following type(s) are allowed in the list FunctionArg


getName

public FunctionValues getName()
Gets the value of the name property.

Returns:
possible object is FunctionValues

setName

public void setName(FunctionValues value)
Sets the value of the name property.

Parameters:
value - allowed object is FunctionValues


Copyright © 2014. All rights reserved.