Back to project page City-Outdoors-Android.
The source code is released under:
Copyright (c) 2012, Edinburgh Council All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are ...
If you think the Android project City-Outdoors-Android 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 uk.co.jarofgreen.cityoutdoors.Model; //w ww .j a v a2s. com import android.content.Context; public class UploadFeatureReport extends BaseUploadContentOrReport { public UploadFeatureReport(Context context) { super(context); } protected String email; public String getEmail() { return email; } public void setEmail(String email) { this.email = email; } }