| Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
| ServiceImpl |
|
| 1.0;1 |
| 1 | package org.aupa.server; | |
| 2 | ||
| 3 | import com.google.gwt.user.server.rpc.RemoteServiceServlet; | |
| 4 | import org.aupa.client.Service; | |
| 5 | ||
| 6 | 0 | public class ServiceImpl extends RemoteServiceServlet implements Service { |
| 7 | public String myMethode(String msg) { | |
| 8 | 0 | return "You sent: " + msg; |
| 9 | } | |
| 10 | } |