All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cucumber.java.runtime.osgi.PaxExamObjectFactory Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package cucumber.java.runtime.osgi;

import org.ops4j.pax.exam.util.Injector;

public class PaxExamObjectFactory extends OsgiObjectFactoryBase {

    private Injector injector;

    public PaxExamObjectFactory(Injector injector) {
        this.injector = injector;
    }

    @Override
    protected void prepareGlueInstance(Object instance) {
        injector.injectFields(instance);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy