com.aspire.nm.component.commonUtil.xml.XStreamHelperDemo.Friends Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commonUtil Show documentation
Show all versions of commonUtil Show documentation
commonUtil is a dajiangnan's java utils
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;
}
}