Advertisement
wingman007

Java - JavaApplication29 VehicleInterface.java

Dec 8th, 2013
179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.36 KB | None | 0 0
  1. /*
  2.  * To change this template, choose Tools | Templates
  3.  * and open the template in the editor.
  4.  */
  5. package javaapplication29;
  6.  
  7. /**
  8.  *
  9.  * @author fmi
  10.  */
  11. public interface VehicleInterface {
  12.     public String pushBreak();
  13.     public String pushClutch();
  14.     public String pushAxelerate();
  15.     public String turnWeel();
  16.     public String shiftGear();
  17. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement