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

flux.UnzipFileActionFactory Maven / Gradle / Ivy

package flux;

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

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

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

  public UnzipFileAction makeUnzipFileAction(String name) {
    return new UnzipFileActionImpl(flowChart, name);
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy