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.swing;
19
20 import griffon.core.addon.GriffonAddon;
21 import griffon.core.controller.ActionFactory;
22 import griffon.core.controller.ActionManager;
23 import griffon.core.injection.Module;
24 import griffon.core.threading.UIThreadManager;
25 import griffon.core.view.WindowManager;
26 import griffon.swing.SwingWindowDisplayHandler;
27 import org.codehaus.griffon.runtime.core.injection.AbstractModule;
28 import org.codehaus.griffon.runtime.swing.controller.SwingActionFactory;
29 import org.codehaus.griffon.runtime.swing.controller.SwingActionManager;
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("swing")
41 @ServiceProviderFor(Module.class)
42 public class SwingModule extends AbstractModule {
43 @Override
44 protected void doConfigure() {
45 // tag::bindings[]
46 bind(SwingWindowDisplayHandler.class)
47 .withClassifier(named("defaultWindowDisplayHandler"))
48 .to(DefaultSwingWindowDisplayHandler.class)
49 .asSingleton();
50
51 bind(SwingWindowDisplayHandler.class)
52 .withClassifier(named("windowDisplayHandler"))
53 .to(ConfigurableSwingWindowDisplayHandler.class)
54 .asSingleton();
55
56 bind(WindowManager.class)
57 .to(DefaultSwingWindowManager.class)
58 .asSingleton();
59
60 bind(UIThreadManager.class)
61 .to(SwingUIThreadManager.class)
62 .asSingleton();
63
64 bind(ActionManager.class)
65 .to(SwingActionManager.class)
66 .asSingleton();
67
68 bind(ActionFactory.class)
69 .to(SwingActionFactory.class)
70 .asSingleton();
71
72 bind(GriffonAddon.class)
73 .to(SwingAddon.class)
74 .asSingleton();
75 // end::bindings[]
76 }
77 }
|