JavafxBuilderModule.java
01 /*
02  * Copyright 2008-2016 the original author or authors.
03  *
04  * Licensed under the Apache License, Version 2.0 (the "License");
05  * you may not use this file except in compliance with the License.
06  * You may obtain a copy of the License at
07  *
08  *     http://www.apache.org/licenses/LICENSE-2.0
09  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.codehaus.griffon.runtime.javafx;
17 
18 import griffon.builder.javafx.JavafxBuilderCustomizer;
19 import griffon.core.injection.Module;
20 import griffon.inject.DependsOn;
21 import griffon.javafx.JavaFXWindowDisplayHandler;
22 import griffon.util.BuilderCustomizer;
23 import org.codehaus.griffon.runtime.core.injection.AbstractModule;
24 import org.kordamp.jipsy.ServiceProviderFor;
25 
26 import javax.inject.Named;
27 
28 import static griffon.util.AnnotationUtils.named;
29 
30 /**
31  @author Andres Almiray
32  */
33 @ServiceProviderFor(Module.class)
34 @DependsOn("javafx")
35 @Named("javafx-groovy")
36 public class JavafxBuilderModule extends AbstractModule {
37     @Override
38     protected void doConfigure() {
39         // tag::bindings[]
40         bind(BuilderCustomizer.class)
41             .to(JavafxBuilderCustomizer.class)
42             .asSingleton();
43         bind(JavaFXWindowDisplayHandler.class)
44             .withClassifier(named("windowDisplayHandler"))
45             .to(GroovyAwareConfigurableJavaFXWindowDisplayHandler.class)
46             .asSingleton();
47         // end::bindings[]
48     }
49 }