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

org.cauli.ui.source.PageEntity Maven / Gradle / Ivy

package org.cauli.ui.source;

import com.google.common.collect.Lists;
import com.thoughtworks.xstream.annotations.XStreamAlias;
import com.thoughtworks.xstream.annotations.XStreamAsAttribute;
import com.thoughtworks.xstream.annotations.XStreamImplicit;

import java.util.List;

/**
 * Created by tianqing.wang on 2014/7/25
 */

public class PageEntity {

    @XStreamAsAttribute()
    @XStreamAlias("name")
    private String name;

    @XStreamImplicit
    List elements= Lists.newArrayList();


    public String getName() {
        return name;
    }

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

    public List getElements() {
        return elements;
    }

    public void setElements(List elements) {
        this.elements = elements;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy