Package org.eclipse.rap.rwt.client.service

Examples of org.eclipse.rap.rwt.client.service.ClientInfo


  @Test
  public void testHasClientInfoService() {
    TabrisClient client = new TabrisClientImpl();

    ClientInfo info = client.getService( ClientInfo.class );

    assertNotNull( info );
  }
View Full Code Here


  @Test
  public void testClientInfoIsSingleton() {
    TabrisClient client = new TabrisClientImpl();

    ClientInfo info = client.getService( ClientInfo.class );

    assertSame( info, client.getService( ClientInfo.class ) );
  }
View Full Code Here

TOP

Related Classes of org.eclipse.rap.rwt.client.service.ClientInfo

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.