Skip to content

Instantly share code, notes, and snippets.

@AndrewShitsko
Last active January 21, 2017 13:51
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 AndrewShitsko/8500ced9182e0c5dc1690edc34a57107 to your computer and use it in GitHub Desktop.
Save AndrewShitsko/8500ced9182e0c5dc1690edc34a57107 to your computer and use it in GitHub Desktop.
package com.example
class Language {
private Integer position
private String language
public Language(Integer position, String language) {
this.position = position
this.language = language
}
public Integer getPosition() {
return this.position
}
public void setPosition(Integer position) {
this.position = position
}
public String getLanguage() {
return this.language
}
public void setLanguage(String language) {
this.language = language
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment