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

com.storedobject.core.SystemProcess Maven / Gradle / Ivy

package com.storedobject.core;

import java.io.File;

public class SystemProcess {

	public SystemProcess() {
		this(null);
	}

	public SystemProcess(String command) {
	}

	public void setCommand(String command) {
	}

	public void addCommand(String command) {
	}

	public String getCommand() {
		return null;
	}

	public void execute(String command) throws Exception {
	}

	public void execute() throws Exception {
	}

	public int getExitValue() {
		return 0;
	}

	public String getOutput() {
		return null;
	}

	public String getError() {
		return null;
	}

	public String[] getEnvironment() {
		return null;
	}

	public void setEnvironment(String[] environment) {
	}

	public File getDirectory() {
		return null;
	}

	public void setDirectory(File directory) {
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy