source: java-rpg-common/Client.java@ 04e7260

Last change on this file since 04e7260 was 04e7260, checked in by dportnoy <dmp1488@…>, 17 years ago

[svn r20]

  • Property mode set to 100644
File size: 397 bytes
Line 
1import java.io.*;
2import java.util.*;
3
4public class Client {
5 private PrintWriter out;
6 private Calendar timeLoggedOn;
7
8 public Client(PrintWriter newOut) {
9 out = newOut;
10 }
11
12 public PrintWriter getOut() {
13 return out;
14 }
15
16 public Calendar getTimeLoggedOn() {
17 return timeLoggedOn;
18 }
19
20 public void setTimeLoggedOn(Calendar newTime) {
21 timeLoggedOn = newTime;
22 }
23}
Note: See TracBrowser for help on using the repository browser.