All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.genexus.gxserver.client.services.contracts.ArrayOfTransferProp Maven / Gradle / Ivy

The newest version!

package com.genexus.gxserver.client.services.contracts;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ArrayOfTransferProp complex type. * *

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

 * <complexType name="ArrayOfTransferProp">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="TransferProp" type="{http://schemas.datacontract.org/2004/07/GeneXus.Server.Contracts}TransferProp" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ArrayOfTransferProp", propOrder = { "transferProp" }) public class ArrayOfTransferProp { @XmlElement(name = "TransferProp", nillable = true) protected List transferProp; /** * Gets the value of the transferProp 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 Jakarta XML Binding object. * This is why there is not a set method for the transferProp property. * *

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

     *    getTransferProp().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link TransferProp } * * */ public List getTransferProp() { if (transferProp == null) { transferProp = new ArrayList(); } return this.transferProp; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy