Back to project page Vispin.
The source code is released under:
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. ...
If you think the Android project Vispin 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.jpardogo.vispin.models; // w ww .j a v a 2 s . co m import java.io.File; /** * Created by jpardogo on 24/07/2014. */ public class PinInfo { public static final int TITLE_INDEX=0; public static final int STATUS_INDEX=1; public static final String SEPARATOR = File.separator; private String countryName; private String status; public PinInfo(String countryName, String status) { this.countryName = countryName; this.status = status; } @Override public String toString() { return countryName+SEPARATOR+status; } }