(String id, String password)
| 23 | public String id; |
| 24 | |
| 25 | public boolean login(String id, String password) throws Exception { |
| 26 | client.login(id, password); |
| 27 | this.id = id; |
| 28 | this.friendGUI.frame.setVisible(true); |
| 29 | return true; |
| 30 | } |
| 31 | |
| 32 | public boolean sendFile(String id, String name, byte[] file) { |
| 33 | try { |
no outgoing calls
no test coverage detected