Last active
June 25, 2020 16:21
Typical Ask Object
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Car { | |
private boolean lights; | |
public boolean getLights() { | |
return lights; | |
} | |
public void setLights(boolean lights) { | |
this.lights = lights; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment