Skip to content

Instantly share code, notes, and snippets.

@jtuttas
Created September 18, 2014 09:07
Show Gist options
  • Save jtuttas/806041aa822cc5c95905 to your computer and use it in GitHub Desktop.
Save jtuttas/806041aa822cc5c95905 to your computer and use it in GitHub Desktop.
public class Fahrzeug {
private double gewicht;
private long laufleistung;
public double getGewicht() {
return gewicht;
}
public void setGewicht(double gewicht) {
this.gewicht = gewicht;
}
public long getLaufleistung() {
return laufleistung;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment