static JFastLogView_noWrap showText_fast_noWrap(JFastLogView_noWrap view default null, S title, O text) {
  if (view != null) {
    view.setText(str(text));
    ret view;
  }
  view = jFastLogView_noWrap(str(text));
  makeFrame(title, jscroll_copyBackground(view));
  ret view;
}

static JFastLogView_noWrap showText_fast_noWrap(O text) {
  ret showText_fast_noWrap(autoFrameTitle(), text);
}