本文整理汇总了Java中com.gdevelop.gwt.syncrpc.SyncProxy.setBaseURL方法的典型用法代码示例。如果您正苦于以下问题:Java SyncProxy.setBaseURL方法的具体用法?Java SyncProxy.setBaseURL怎么用?Java SyncProxy.setBaseURL使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.gdevelop.gwt.syncrpc.SyncProxy
的用法示例。
在下文中一共展示了SyncProxy.setBaseURL方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: setUp
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
/**
* @see android.test.ActivityInstrumentationTestCase2#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
this.overrideTimeout = -1;
for (Class<?> clazz : SyncProxy.getLoggerClasses()) {
FixedAndroidHandler.setupLogger(Logger.getLogger(clazz.getName()));
}
this.task = null;
SyncProxy.setBaseURL(getModuleBaseURL());
// SyncProxy.setLoggingLevel(Level.FINER);
if (!this.serviceTaskAvailable && this.serviceInitTask != null) {
CountDownLatch initSignal = new CountDownLatch(1);
this.serviceInitTask.execute(initSignal);
assertTrue("Failed to init service", initSignal.await(
SPATests.WAIT_TIME_SERVICE_INIT, TimeUnit.SECONDS));
this.serviceTaskAvailable = true;
}
}
示例2: setUp
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
/**
* @see junit.framework.TestCase#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
this.localizedRpcTimeout = DEFAULT_TIMEOUT;
SyncProxy.setBaseURL(getModuleBaseURL());
// SyncProxy.setLoggingLevel(Level.FINER);
this.logger.setLevel(Level.WARNING);
}
示例3: doInBackground
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
/**
* @see android.os.AsyncTask#doInBackground(Params[])
*/
@Override
protected MainActivity doInBackground(MainActivity... act) {
// Use 10.0.2.2 for Hosted Emulator Loopback interface
SyncProxy.setBaseURL(MainActivity.BASE_URL + "/spawebtest/");
this.rpcService = SyncProxy.createProxy(GreetingServiceAsync.class,
new ProxySettings().setCookieManager(this.cm));
return act[0];
}
示例4: canInvokeAirlineServiceWithGwtSyncProxy
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
@Test
public void canInvokeAirlineServiceWithGwtSyncProxy() {
String moduleName = "airline";
SyncProxy.setBaseURL(this.webAppUrl + "/" + moduleName + "/");
AirlineService service = SyncProxy.createSync(AirlineService.class);
Airline airline = service.getAirline();
assertEquals("Air CS410J", airline.getName());
assertEquals(1, airline.getFlights().size());
}
示例5: canInvokePingServiceWithGwtSyncProxy
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
@Test
public void canInvokePingServiceWithGwtSyncProxy() {
String moduleName = "phonebill";
SyncProxy.setBaseURL(this.webAppUrl + "/" + moduleName + "/");
PingService ping = SyncProxy.createSync(PingService.class);
PhoneBill airline = ping.ping();
assertEquals("CS410J", airline.getCustomer());
assertEquals(1, airline.getPhoneCalls().size());
}
示例6: canInvokePingServiceWithGwtSyncProxy
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
@Test
public void canInvokePingServiceWithGwtSyncProxy() {
String moduleName = "apptbook";
SyncProxy.setBaseURL(this.webAppUrl + "/" + moduleName + "/");
PingService ping = SyncProxy.createSync(PingService.class);
AppointmentBook apptbook = ping.ping();
assertEquals("My Owner", apptbook.getOwnerName());
assertEquals(1, apptbook.getAppointments().size());
}
示例7: canInvokeDivisionServiceWithGwtSyncProxy
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
@Test
public void canInvokeDivisionServiceWithGwtSyncProxy() {
String moduleName = "examples";
SyncProxy.setBaseURL(this.webAppUrl + "/" + moduleName + "/");
DivisionService sync = SyncProxy.createSync(DivisionService.class);
int quotient = sync.divide(6, 2);
assertEquals(3, quotient);
}
示例8: setUp
import com.gdevelop.gwt.syncrpc.SyncProxy; //导入方法依赖的package包/类
/**
* @see com.google.gwt.user.client.rpc.RpcTestBase#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
SyncProxy.setBaseURL(getModuleBaseURL());
}