public static String prompt()

in src/org/jetbrains/plugins/ipnb/editor/IpnbEditorUtil.java [124:132]


  public static String prompt(@Nullable Integer promptNumber, @NotNull final PromptType type) {
    if (type == PromptType.In) {
      return promptNumber == null ? type + " [ ]:" : promptNumber > 0 ? String.format(type + " [%d]:", promptNumber) : type + " [*]:";
    }
    else if (type == PromptType.Out) {
      return promptNumber == null ? type + "[ ]:" : promptNumber > 0 ? String.format(type + "[%d]:", promptNumber) : type + "[*]:";
    }
    return "";
  }