home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / NTUsers / JBECODE.ZIP / JavaByExample / chap04 / LST4_1.txt next >
Text File  |  1996-01-30  |  155b  |  12 lines

  1. class Car
  2. {
  3.     data direction;
  4.     data position;
  5.     data speed;
  6.  
  7.     method Steer();
  8.     method PressGasPedal();
  9.     method PressBrake();
  10. }
  11.  
  12.