Skip to content

Instantly share code, notes, and snippets.

@manishkpr
Created December 30, 2016 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manishkpr/f213564e59409bbef558806879e58007 to your computer and use it in GitHub Desktop.
Save manishkpr/f213564e59409bbef558806879e58007 to your computer and use it in GitHub Desktop.
package com.manishkpr.autotextviewexample;
public class SuggestGetSet {
String id,name;
public SuggestGetSet(String id, String name){
this.setId(id);
this.setName(name);
}
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment