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

samplest.hello.TestSetInjectionImpl02FactoryMachine Maven / Gradle / Ivy

There is a newer version: 1.2.0-rc2
Show newest version
package samplest.hello;

import com.google.common.collect.ImmutableSet;
import restx.factory.*;
import samplest.hello.TestSetInjectionImpl02;

@Machine
public class TestSetInjectionImpl02FactoryMachine extends SingleNameFactoryMachine {
    public static final Name NAME = Name.of(samplest.hello.TestSetInjectionImpl02.class, "TestSetInjectionImpl02");

    public TestSetInjectionImpl02FactoryMachine() {
        super(0, new StdMachineEngine(NAME, 0, BoundlessComponentBox.FACTORY) {


            @Override
            public BillOfMaterials getBillOfMaterial() {
                return new BillOfMaterials(ImmutableSet.>of(

                ));
            }

            @Override
            protected samplest.hello.TestSetInjectionImpl02 doNewComponent(SatisfiedBOM satisfiedBOM) {
                return new TestSetInjectionImpl02(

                );
            }
        });
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy