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

com.alogient.cameleon.sdk.community.interspire.jaxb.CustomFields Maven / Gradle / Ivy

The newest version!
package com.alogient.cameleon.sdk.community.interspire.jaxb;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;

/**
 * User: jmirc
 * Date: 27-Jan-2010
 * Time: 1:18:07 PM
 */
@XmlRootElement(name = "customfields")
public class CustomFields  {

    @XmlElement(name = "item")
    private List itemList;

    /**
     * Add an item
     * @param item the item to add
     */
    public void addItem(Item item) {
        if (itemList == null) {
            itemList = new ArrayList();
        }

        itemList.add(item);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy