Back to project page FilmoMeter.
The source code is released under:
GNU General Public License
If you think the Android project FilmoMeter 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 safwan.filmometer.data; // w ww.j av a 2 s . c om public class FilmFromSource extends Film { private boolean isPrimarySource; private String sourceDescription; public boolean isPrimarySource() { return isPrimarySource; } public void setPrimarySource(boolean primarySource) { isPrimarySource = primarySource; } public String getSourceDescription() { return sourceDescription; } public void setSourceDescription(String sourceDescription) { this.sourceDescription = sourceDescription; } }