document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Write a description of class MemberAcces here.
  3.  *
  4.  * @author (Muhammad Bagus Istighfar)
  5.  * @version (14.10.20)
  6.  */
  7. public class MemberAccesTest
  8. {
  9.     public static void main (String[] args)
  10.     {
  11.         Time1 time = new Time1();
  12.         time.hours=7;// error: has private acces in Tim1
  13.         time.minute=15;//error: has private acces in Time1
  14.         time.second=30;//error: has private acces in Time1
  15.     }
  16. }
');