com.github.linushp.commons.xmlstring.xmlelement.RootElement Maven / Gradle / Ivy
package com.github.linushp.commons.xmlstring.xmlelement;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlRootElement;
import java.util.List;
/**
* Created by luanhaipeng on 2017/6/8.
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlRootElement(name = "strings")
public class RootElement {
private List string;
public List getString() {
return string;
}
public void setString(List string) {
this.string = string;
}
}