Package | Description |
---|---|
org.netbeans.api.extexecution |
The API supporting execution of an external process in the IDE.
|
org.netbeans.api.extexecution.input |
The support API for processing the growing streams or files.
|
Modifier and Type | Method and Description |
---|---|
InputProcessor |
ExecutionDescriptor.InputProcessorFactory.newInputProcessor(InputProcessor defaultProcessor)
Deprecated.
Creates and returns new input processor.
|
Modifier and Type | Method and Description |
---|---|
InputProcessor |
ExecutionDescriptor.InputProcessorFactory.newInputProcessor(InputProcessor defaultProcessor)
Deprecated.
Creates and returns new input processor.
|
Modifier and Type | Method and Description |
---|---|
static InputProcessor |
InputProcessors.ansiStripping(InputProcessor delegate)
Deprecated.
Returns the processor that strips any
ANSI escape sequences
and passes the result to the delegate.
|
static InputProcessor |
InputProcessors.bridge(LineProcessor lineProcessor)
Deprecated.
Returns the processor converting characters to the whole lines passing
them to the given line processor.
|
static InputProcessor |
InputProcessors.copying(Writer writer)
Deprecated.
Returns the processor that writes every character passed for processing
to the given writer.
|
static InputProcessor |
InputProcessors.printing(OutputWriter out,
boolean resetEnabled)
Deprecated.
Returns the processor printing all characters passed for processing to
the given output writer.
|
static InputProcessor |
InputProcessors.printing(OutputWriter out,
LineConvertor convertor,
boolean resetEnabled)
Deprecated.
Returns the processor converting whole lines with convertor and
printing the result including unterminated tail (if present) to the
given output writer.
|
static InputProcessor |
InputProcessors.proxy(InputProcessor... processors)
Deprecated.
Returns the processor acting as a proxy.
|
Modifier and Type | Method and Description |
---|---|
static InputProcessor |
InputProcessors.ansiStripping(InputProcessor delegate)
Deprecated.
Returns the processor that strips any
ANSI escape sequences
and passes the result to the delegate.
|
static InputReaderTask |
InputReaderTask.newDrainingTask(InputReader reader,
InputProcessor processor)
Deprecated.
Creates the new task.
|
static InputReaderTask |
InputReaderTask.newTask(InputReader reader,
InputProcessor processor)
Deprecated.
Creates the new task.
|
static InputProcessor |
InputProcessors.proxy(InputProcessor... processors)
Deprecated.
Returns the processor acting as a proxy.
|
int |
InputReader.readInput(InputProcessor processor)
Deprecated.
Reads some input and process it through the processor (if any).
|