01 /*
02 * SPDX-License-Identifier: Apache-2.0
03 *
04 * Copyright 2008-2017 the original author or authors.
05 *
06 * Licensed under the Apache License, Version 2.0 (the "License");
07 * you may not use this file except in compliance with the License.
08 * You may obtain a copy of the License at
09 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18 package org.codehaus.griffon.runtime.javafx;
19
20 import griffon.core.controller.ActionFactory;
21 import griffon.core.controller.ActionManager;
22 import griffon.core.injection.Module;
23 import griffon.core.threading.UIThreadManager;
24 import griffon.core.view.WindowManager;
25 import griffon.javafx.JavaFXWindowDisplayHandler;
26 import griffon.javafx.support.ActionMatcher;
27 import org.codehaus.griffon.runtime.core.injection.AbstractModule;
28 import org.codehaus.griffon.runtime.javafx.controller.JavaFXActionFactory;
29 import org.codehaus.griffon.runtime.javafx.controller.JavaFXActionManager;
30 import org.kordamp.jipsy.ServiceProviderFor;
31
32 import javax.inject.Named;
33
34 import static griffon.util.AnnotationUtils.named;
35
36 /**
37 * @author Andres Almiray
38 * @since 2.0.0
39 */
40 @Named("javafx")
41 @ServiceProviderFor(Module.class)
42 public class JavaFXModule extends AbstractModule {
43 @Override
44 protected void doConfigure() {
45 // tag::bindings[]
46 bind(JavaFXWindowDisplayHandler.class)
47 .withClassifier(named("defaultWindowDisplayHandler"))
48 .to(DefaultJavaFXWindowDisplayHandler.class)
49 .asSingleton();
50
51 bind(JavaFXWindowDisplayHandler.class)
52 .withClassifier(named("windowDisplayHandler"))
53 .to(ConfigurableJavaFXWindowDisplayHandler.class)
54 .asSingleton();
55
56 bind(WindowManager.class)
57 .to(DefaultJavaFXWindowManager.class)
58 .asSingleton();
59
60 bind(UIThreadManager.class)
61 .to(JavaFXUIThreadManager.class)
62 .asSingleton();
63
64 bind(ActionManager.class)
65 .to(JavaFXActionManager.class)
66 .asSingleton();
67
68 bind(ActionFactory.class)
69 .to(JavaFXActionFactory.class)
70 .asSingleton();
71
72 bind(ActionMatcher.class)
73 .toInstance(ActionMatcher.DEFAULT);
74 // end::bindings[]
75 }
76 }
|