setActiveBuffer static method

void setActiveBuffer(
  1. StringBuffer buffer,
  2. String promptLabel
)

Sets the active buffer and prompt label for raw mode.

Implementation

static void setActiveBuffer(StringBuffer buffer, String promptLabel) {
  _activeBuffer = buffer;
  _activePromptLabel = promptLabel;
}