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

com.github.linushp.commons.xmlstring.xmlelement.RootElement Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy