public class NopProcessHandler extends ProcessHandler
SILENTLY_DESTROY_ON_CLOSE, TERMINATION_REQUESTED| Constructor and Description | 
|---|
| NopProcessHandler() | 
| Modifier and Type | Method and Description | 
|---|---|
| protected void | destroyProcessImpl()Performs process destruction. | 
| boolean | detachIsDefault() | 
| protected void | detachProcessImpl()Performs detaching process. | 
| java.io.OutputStream | getProcessInput() | 
addProcessListener, addProcessListener, destroyProcess, detachProcess, getExitCode, isProcessTerminated, isProcessTerminating, isSilentlyDestroyOnClose, isStartNotified, notifyProcessDetached, notifyProcessTerminated, notifyTextAvailable, removeProcessListener, startNotify, waitFor, waitForchangeUserMap, clearUserData, clone, copyCopyableDataTo, copyUserDataTo, getCopyableUserData, getUserData, getUserDataString, getUserMap, isUserDataEmpty, putCopyableUserData, putUserData, putUserDataIfAbsent, replace, setUserMapprotected void destroyProcessImpl()
ProcessHandlerThis is an internal implementation of ProcessHandler.destroyProcess(). All sub-classes must implement this method and perform the
 destruction in this method. This method is called from ProcessHandler.destroyProcess() and it can be in any thread including the
 event dispatcher thread. You should avoid doing any expensive operation directly in this method. Instead, you may post the work to
 background thread and return without waiting for it. If the performed destruction led to process termination,
 ProcessHandler.notifyProcessTerminated(int) must be called in any thread (not necessary from this method).
destroyProcessImpl in class ProcessHandlerprotected void detachProcessImpl()
ProcessHandlerThis is an internal implementation of ProcessHandler.detachProcess(). All sub-classes must implement this method and perform the
 detaching in this method. This method is called from ProcessHandler.detachProcess() and it can be in any thread including the
 event dispatcher thread. You should avoid doing any expensive operation directly in this method. Instead, you may post the work to
 background thread and return without waiting for it. If the performed detaching is completed,
 ProcessHandler.notifyProcessTerminated(int) must be called in any thread (not necessary from this method).
detachProcessImpl in class ProcessHandlerpublic boolean detachIsDefault()
detachIsDefault in class ProcessHandlerpublic java.io.OutputStream getProcessInput()
getProcessInput in class ProcessHandler