Compare commits
2 commits
90fc41f766
...
698c2faaa8
Author | SHA1 | Date | |
---|---|---|---|
698c2faaa8 | |||
52002e45e7 |
4 changed files with 27 additions and 0 deletions
Binary file not shown.
Before Width: | Height: | Size: 40 KiB After Width: | Height: | Size: 28 KiB |
Binary file not shown.
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 19 KiB |
14
src/Message.java
Normal file
14
src/Message.java
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
public class Message {
|
||||||
|
|
||||||
|
|
||||||
|
private String msg = null;
|
||||||
|
public void setmsg(String msg)
|
||||||
|
{
|
||||||
|
this.msg = msg;
|
||||||
|
}
|
||||||
|
public String getmsg()
|
||||||
|
{
|
||||||
|
return msg;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
13
src/User.java
Normal file
13
src/User.java
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
|
||||||
|
public class User {
|
||||||
|
|
||||||
|
private String pseudo = null;
|
||||||
|
public void setpseudo(String pseudo)
|
||||||
|
{
|
||||||
|
this.pseudo = pseudo;
|
||||||
|
}
|
||||||
|
public String getpseudo()
|
||||||
|
{
|
||||||
|
return pseudo;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue