Skip to content
Snippets Groups Projects
Select Git revision
2 results Searching

PowerOnZustand.java

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    PowerOnZustand.java 335 B
    package soon;
    
    public abstract class PowerOnZustand {
    	Soon s;
    	PowerOn p;
    	
    	public PowerOnZustand(Soon s, PowerOn p) {
    		this.s = s;
    		this.p = p;
    	}
    	
    	public void playButton() {};
    	public void stopButton() {};
    	public void volumeUpButton() {};
    	public void volumeDownButton() {};
    	public void entry() {};
    	public void exit() {};
    }