/workbook

Primary LanguageJavaOtherNOASSERTION

Workbook

A workbook for JSR-223 scripting languages (Groovy, JavaScript, JRuby), allowing the evaluation of commands along with other views and editors.

Screenshot1 Screenshot2

Features

  • Run commands against a scripting engine.
  • Two-way editors, tab views, and inline views.
  • Save workbook to a file, saving tab layout, global variables, and editor states.
  • Run from Java program to access variables and execute methods from that program.
  • Register custom views and editors using SWT widgets.

Installation

Usage

Run jar:

java -jar workbook.jar

or run from Java:

Workbook workbook = new Workbook();
workbook.setVariable(...);
workbook.waitForExit();