document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1.  
  2. /**
  3.  * Fig. 8.3: MemberAccessTest
  4.  *
  5.  * @author Mohammad Tauchid
  6.  * @version 0.1
  7.  */
  8. public class MemberAccessTest
  9. {
  10.     public static void main (String[] args) {
  11.         Time1 time = new Time1();
  12.        
  13.         time.hour = 7;
  14.         time.minute = 15;
  15.         time.second = 30;
  16.     }
  17. }
  18.  
');