Android Open Source - CSVListExample State






From Project

Back to project page CSVListExample.

License

The source code is released under:

Apache License

If you think the Android project CSVListExample listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Java Source Code

package com.makemyandroidapp.example.csvlist;
/*from   w  ww  .  ja v  a2  s  . c o m*/

/*
 * Basic Data class to hold a state name and the state capital.
 */
public class State {
  
  private String name;
  private String capital;
  
  
  public String getName() {
    return name;
  }
  public void setName(String name) {
    this.name = name;
  }
  public String getCapital() {
    return capital;
  }
  public void setCapital(String capital) {
    this.capital = capital;
  }
  

}




Java Source Code List

com.makemyandroidapp.example.csvlist.CSVAdapter.java
com.makemyandroidapp.example.csvlist.MainActivity.java
com.makemyandroidapp.example.csvlist.State.java