Package com.eclipsesource.tabris.passepartout

Examples of com.eclipsesource.tabris.passepartout.FluidGridConfiguration


  public static UIEnvironment createEnvironment( Bounds bounds ) {
    return new UIEnvironmentImpl( bounds, mock( Bounds.class ), 16 );
  }

  public static FluidGridConfiguration createConfig() {
    return new FluidGridConfiguration( LayoutMode.AUTO, 720, 1872 );
  }
View Full Code Here


public class LayouterTest {

  @Test( expected = IllegalArgumentException.class )
  public void testFailsWithNullEnvironment() {
    new Layouter( null, new FluidGridConfiguration( LayoutMode.NONE, 100, 200 ) );
  }
View Full Code Here

TOP

Related Classes of com.eclipsesource.tabris.passepartout.FluidGridConfiguration

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.