/**
* Private members of class Time1 are not accessible.
*
* @author Muthia Qurrota Akyun
* 9 Oktober 2020
*/
public class MemberAccessTest
{
public static void main (String[] args)
{
Time1 time = new Time1(); //create and initialize Time1 object
time.hour = 7;
time.minute = 15;
time.second = 30;
}
}