Package se.jbee.inject.config

Examples of se.jbee.inject.config.Presets


  }

  private final Injector injector = injector();

  private static Injector injector() {
    Presets presets = Presets.EMPTY.preset( Properties.class, exampleProperties() );
    presets = presets.preset( Typecast.listTypeOf( String.class ), Arrays.asList( "a", "b" ) );
    presets = presets.preset( Typecast.listTypeOf( Integer.class ), Arrays.asList( 1, 2 ) );
    return Bootstrap.injector( PresetModuleBindsBundle.class,
        Globals.STANDARD.presets( presets ) );
  }
View Full Code Here

TOP

Related Classes of se.jbee.inject.config.Presets

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.