Skip to content

Instantly share code, notes, and snippets.

@accidentaldeveloper
Last active October 14, 2017 02:46
Show Gist options
  • Save accidentaldeveloper/83fdaa2f8cba74f48464ab419e5c323e to your computer and use it in GitHub Desktop.
Save accidentaldeveloper/83fdaa2f8cba74f48464ab419e5c323e to your computer and use it in GitHub Desktop.
import java.util.List;
public class Language {
private String version;
private String name;
private List<Feature> features
public Language(String version, String name, List<Feature> features) {
this.version = version;
this.name = name;
this.features = features;
}
public String getVersion() {
return version;
}
public String getName() {
return name;
}
public List<Feature> getFeatures() {
return features;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment