Package org.xmlvm.proc.in.InputProcess

Examples of org.xmlvm.proc.in.InputProcess.EmptyInputProcess


    // If there is no input specified, we create an empty input process.
    // This is used for processes that just create files, but don't take
    // input. One such example is creating empty project skeletons.
    if (inputElements.isEmpty())
    {
      processes.add(new EmptyInputProcess());
      return processes;
    }

    for (String inputElement : inputElements)
    {
View Full Code Here

TOP

Related Classes of org.xmlvm.proc.in.InputProcess.EmptyInputProcess

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.