use of com.google.gwt.inject.rebind.util.InjectorMethod in project google-gin by gwtplus.
the class GinjectorBindingsOutputter method outputMethods.
/**
* Outputs some methods to the fragments they belong to.
*/
void outputMethods(Iterable<InjectorMethod> methods, FragmentMap fragments) {
for (InjectorMethod method : methods) {
FragmentPackageName fragmentPackageName = fragmentPackageNameFactory.create(method.getPackageName());
GinjectorFragmentOutputter fragment = fragments.get(fragmentPackageName);
fragment.outputMethod(method);
}
}
Aggregations