io.codemodder.XPathStreamProcessorModule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of codemodder-base Show documentation
Show all versions of codemodder-base Show documentation
Base framework for writing codemods in Java
package io.codemodder;
import com.google.inject.AbstractModule;
/** Binds the XPathStreamProcessor for codemods. */
final class XPathStreamProcessorModule extends AbstractModule {
@Override
protected void configure() {
bind(XPathStreamProcessor.class).to(DefaultXPathStreamProcessor.class);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy