Package com.ganteater.ae.desktop.view


package com.ganteater.ae.desktop.view
Swing-based views used by the Anteater Engine desktop application.

This package contains UI components (primarily JPanel implementations) that render task output and logs in the desktop client. Most views extend AbstractView, which provides a simple lifecycle (initialization with parameters and subsequent output events).

Core concepts

Provided view types

Example


 Properties params = new Properties();
 params.setProperty("name", "output");

 AbstractView view = new Text();
 view.init(params, manager);

 view.out("Started", new Properties());