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

flux.UntarFileActionFactory Maven / Gradle / Ivy

package flux;

import flux.dev.AdapterFactory;
import fluximpl.FlowChartImpl;
import fluximpl.UntarFileActionImpl;

/**
 * Factory for creating UntarFileAction.
 *
 * @author [email protected]
 */
public class UntarFileActionFactory implements AdapterFactory {
  private FlowChartImpl flowChart;

  public void init(FlowChartImpl flowChart) {
    this.flowChart = flowChart;
  }

  public UntarFileAction makeUntarFileAction(String name) {
    return new UntarFileActionImpl(flowChart, name);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy