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.pivot;
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.pivot.PivotWindowDisplayHandler;
26 import org.codehaus.griffon.runtime.core.injection.AbstractModule;
27 import org.codehaus.griffon.runtime.pivot.controller.PivotActionFactory;
28 import org.codehaus.griffon.runtime.pivot.controller.PivotActionManager;
29 import org.kordamp.jipsy.ServiceProviderFor;
30
31 import javax.inject.Named;
32
33 import static griffon.util.AnnotationUtils.named;
34
35 /**
36 * @author Andres Almiray
37 * @since 2.0.0
38 */
39 @Named("pivot")
40 @ServiceProviderFor(Module.class)
41 public class PivotModule extends AbstractModule {
42 @Override
43 protected void doConfigure() {
44 // tag::bindings[]
45 bind(PivotWindowDisplayHandler.class)
46 .withClassifier(named("defaultWindowDisplayHandler"))
47 .to(DefaultPivotWindowDisplayHandler.class)
48 .asSingleton();
49
50 bind(PivotWindowDisplayHandler.class)
51 .withClassifier(named("windowDisplayHandler"))
52 .to(ConfigurablePivotWindowDisplayHandler.class)
53 .asSingleton();
54
55 bind(WindowManager.class)
56 .to(DefaultPivotWindowManager.class)
57 .asSingleton();
58
59 bind(UIThreadManager.class)
60 .to(PivotUIThreadManager.class)
61 .asSingleton();
62
63 bind(ActionManager.class)
64 .to(PivotActionManager.class)
65 .asSingleton();
66
67 bind(ActionFactory.class)
68 .to(PivotActionFactory.class)
69 .asSingleton();
70 // end::bindings[]
71 }
72 }
|