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

com.maojianwei.chinese.poetry.database.PoetryItem Maven / Gradle / Ivy

package com.maojianwei.chinese.poetry.database;

/**
 * Created by mao on 4/9/16.
 */
public class PoetryItem {

    private String title;
    private String dynasty;
    private String poet;
    private String poem;


    public void setTitle(String title){
        this.title = title;
    }
    public void setDynasty(String dynasty){
        this.dynasty = dynasty;
    }
    public void setPoet(String poet){
        this.poet = poet;
    }
    public void setPoem(String poem){
        this.poem = poem;
    }
    public String getTitle(){
        return title;
    }
    public String getDynasty(){
        return dynasty;
    }
    public String getPoet(){
        return poet;
    }
    public String getPoem(){
        return poem;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy