samplest.hello.TestSetAbstractImpl02FactoryMachine Maven / Gradle / Ivy
package samplest.hello;
import com.google.common.collect.ImmutableSet;
import restx.factory.*;
import samplest.hello.TestSetAbstractImpl02;
@Machine
public class TestSetAbstractImpl02FactoryMachine extends SingleNameFactoryMachine {
public static final Name NAME = Name.of(samplest.hello.TestSetAbstractImpl02.class, "TestSetAbstractImpl02");
public TestSetAbstractImpl02FactoryMachine() {
super(0, new StdMachineEngine(NAME, 0, BoundlessComponentBox.FACTORY) {
@Override
public BillOfMaterials getBillOfMaterial() {
return new BillOfMaterials(ImmutableSet.>of(
));
}
@Override
protected samplest.hello.TestSetAbstractImpl02 doNewComponent(SatisfiedBOM satisfiedBOM) {
return new TestSetAbstractImpl02(
);
}
});
}
}