Package com.eclipsesource.tabris.internal.ui

Examples of com.eclipsesource.tabris.internal.ui.InternalPageConfiguration


   * @see PageManager#showPage(String)
   */
  public static PageConfiguration newPage( String pageId, Class<? extends Page> pageType ) {
    checkArgumentNotNullAndNotEmpty( pageId, "Page Id" );
    checkArgumentNotNull( pageType, "Type of Page" );
    return new InternalPageConfiguration( pageId, pageType );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.internal.ui.InternalPageConfiguration

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.