1 package com.atlassian.pageobjects.elements;
2
3 import com.google.inject.Binder;
4 import com.google.inject.Module;
5
6 /**
7 * Guice module that adds bindings for classes required by the elements
8 */
9 public class ElementModule implements Module
10 {
11 public void configure(Binder binder)
12 {
13 binder.bind(ElementByPostInjectionProcessor.class);
14 binder.bind(PageElementFinder.class).to(GlobalElementFinder.class);
15 }
16 }