/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * This source file is part of SableVM classlib-stubs. * * * * See the file "LICENSE" for the copyright information and for * * the terms and conditions for copying, distribution and * * modification of this source file. * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */ package java.lang; import java.io.File; import java.io.IOException; import java.util.List; import java.util.Map; public final class ProcessBuilder extends Object { public ProcessBuilder(List command) { } public ProcessBuilder(String... command) { } native public ProcessBuilder command(List command); native public ProcessBuilder command(String... command); native public List command(); native public Map environment(); native public File directory(); native public ProcessBuilder directory(File directory); native public boolean redirectErrorStream(); native public ProcessBuilder redirectErrorStream(boolean redirectErrorStream); native public Process start() throws IOException; }