Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package com.samkough.headfirst;
- public class Clock
- {
- public static void main(String args[])
- {
- ClockTestDrive c = new ClockTestDrive();
- c.setTime("12:45");
- String tod = c.getTime();
- System.out.println("time: " + tod);
- }
- }
- ------------------------------------------------------------------------------------------------------------------
- package com.samkough.headfirst;
- public class ClockTestDrive
- {
- String time;
- void setTime(String t)
- {
- time = t;
- }
- String getTime()
- {
- return time;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment