PageRenderTime 153ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

/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
  1. package com.googlecode.gwtrpccommlayer.client.impl;
  2. import java.util.Set;
  3. /**
  4. * Created by IntelliJ IDEA.
  5. * User: dan
  6. * Date: 11/4/10
  7. * Time: 12:02 AM
  8. */
  9. public interface TestService {
  10. public void easy();
  11. public void multipleArgs(String test, Integer another) throws Exception;
  12. public String echoSimple(String test);
  13. public <E> Set<E> echoGeneric(Set<E> input);
  14. }