Skip to content

Instantly share code, notes, and snippets.

@singhrahuldps
Created April 30, 2020 13:54
Show Gist options
  • Save singhrahuldps/97b16c2bd4660b31d19bc3b5d7cd0d73 to your computer and use it in GitHub Desktop.
Save singhrahuldps/97b16c2bd4660b31d19bc3b5d7cd0d73 to your computer and use it in GitHub Desktop.
public abstract class Device {
abstract void switchOn();
abstract void switchOff();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment