1 16 package com.google.gwt.user.client.rpc; 17 18 24 public interface ServiceDefTarget { 25 26 30 public static class NoServiceEntryPointSpecifiedException extends 31 InvocationException { 32 33 public NoServiceEntryPointSpecifiedException() { 34 super("Service implementation URL not specified"); 35 } 36 } 37 38 43 String getServiceEntryPoint(); 44 45 50 void setServiceEntryPoint(String address); 51 } 52 | Popular Tags |