Back to project page Yeah-MaterialLove.
The source code is released under:
Apache License
If you think the Android project Yeah-MaterialLove listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.yeahdev.materiallovetesting.easyadapterexample; //from w w w . ja v a 2 s.co m public class Blindtext { private String titleBlindtext; private String contentBlindtext; public Blindtext(String title, String content) { this.titleBlindtext = title; this.contentBlindtext = content; } public String getTitleBlindtext() { return this.titleBlindtext; } public void setTitleBlindtext(String title) { this.titleBlindtext = title; } public String getContentBlindtext() { return this.contentBlindtext; } public void setContentBlindtext(String content) { this.contentBlindtext = content; } }