document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Program MemberAccessTest
  3.  * @author (Dido Fayed)
  4.  * @version (11.10.2020)
  5.  */
  6.  
  7. public class MemberAcces
  8. {
  9.     public static void main (String[] args)
  10.     {
  11.         Time1 time = new Time1();
  12.        
  13.          time.hour = 7; // error : hour has private access in Time
  14.         time.minute = 15; // error : minute has private access in Time
  15.         time.second = 30; // error : second has private access in Time
  16.     }
  17. }
');