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

com.aspire.nm.component.commonUtil.xml.XStreamHelperDemo.Friends Maven / Gradle / Ivy

There is a newer version: 1.0.10
Show newest version
package com.aspire.nm.component.commonUtil.xml.XStreamHelperDemo;

import java.util.List;

import com.thoughtworks.xstream.annotations.XStreamImplicit;

public class Friends{
	
    @XStreamImplicit(itemFieldName="name")
    private List name;

    public List getName() {
        return name;
    }

    public void setName(List name) {
        this.name = name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy