/gwtrpccommlayer/src/test/java/com/googlecode/gwtrpccommlayer/client/impl/TestService.java
https://code.google.com/p/gwtrpccommlayer/ · Java · 16 lines · 8 code · 2 blank · 6 comment · 0 complexity · 10fe877fe0fb269e6348fce39ed6d7b1 MD5 · raw file
- package com.googlecode.gwtrpccommlayer.client.impl;
-
- import java.util.Set;
-
- /**
- * Created by IntelliJ IDEA.
- * User: dan
- * Date: 11/4/10
- * Time: 12:02 AM
- */
- public interface TestService {
- public void easy();
- public void multipleArgs(String test, Integer another) throws Exception;
- public String echoSimple(String test);
- public <E> Set<E> echoGeneric(Set<E> input);
- }