Skip to content

Instantly share code, notes, and snippets.

@setu9760
Created August 13, 2014 00:06
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 setu9760/bcb617f15cb71ced8f57 to your computer and use it in GitHub Desktop.
Save setu9760/bcb617f15cb71ced8f57 to your computer and use it in GitHub Desktop.
public class example{
private int i;
example(int i){
this.i = i;
}
public void setI(int i){
this.i = i;
}
public int getI(){
return this.i;
}
}
@setu9760
Copy link
Author

example code

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment