Back to project page local-stories.
The source code is released under:
Apache License
If you think the Android project local-stories 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 no.hiof.stud.localstories; /*from w w w .jav a 2 s . c o m*/ public class Picture { private static int idd=0; public int id; public String address; public Picture(String adrs){ id=idd; idd++; address=adrs; } }