01 /*
02 * Copyright 2008-2015 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.pivot;
17
18 import griffon.builder.pivot.PivotBuilderCustomizer;
19 import griffon.core.injection.Module;
20 import griffon.inject.DependsOn;
21 import griffon.pivot.PivotWindowDisplayHandler;
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("pivot")
35 @Named("pivot-groovy")
36 public class PivotBuilderModule extends AbstractModule {
37 @Override
38 protected void doConfigure() {
39 // tag::bindings[]
40 bind(BuilderCustomizer.class)
41 .to(PivotBuilderCustomizer.class)
42 .asSingleton();
43 bind(PivotWindowDisplayHandler.class)
44 .withClassifier(named("windowDisplayHandler"))
45 .to(GroovyAwareConfigurablePivotWindowDisplayHandler.class)
46 .asSingleton();
47 // end::bindings[]
48 }
49 }
|