Back to project page anti-piracy-android-app.
The source code is released under:
Apache License
If you think the Android project anti-piracy-android-app 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 mil.nga.giat.asam.model; // w w w .j av a2 s . c o m import java.io.Serializable; @SuppressWarnings("serial") public class LegalBean implements Serializable { private String mTitle; private String mLegalText; public String getTitle() { return mTitle; } public void setTitle(String title) { this.mTitle = title; } public String getLegalText() { return mLegalText; } public void setLegalText(String legalText) { this.mLegalText = legalText; } }