public CreateOperationAction(Transformation tx, UiEntityFactory worker, EntityPageLocator pageLocator) {
this(tx, createFactory(worker, pageLocator));
}
private static TransformationToOperationFactory createFactory(UiEntityFactory worker, EntityPageLocator pageLocator) {
TransformationToOperationFactory f = new TransformationToOperationFactory(worker);
f.setPageLocator(pageLocator);
return f;
}