guaphylo.lphy-studio.1.5.0.source-code.module-info Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lphy-studio Show documentation
Show all versions of lphy-studio Show documentation
The GUI for LPhy language.
The newest version!
/**
* @author Walter Xie
*/
module lphystudio {
requires transitive lphy.base;
requires jlatexmath;
// requires org.json;
requires org.jfree.jfreechart;
requires markdowngenerator;
exports lphystudio.app;
exports lphystudio.app.manager;
exports lphystudio.core.codebuilder;
exports lphystudio.core.codecolorizer;
exports lphystudio.core.layeredgraph;
exports lphystudio.core.logger;
exports lphystudio.core.narrative;
exports lphystudio.core.swing;
exports lphystudio.core.valueeditor;
exports lphystudio.core.theme;
// Both are empty now, but must be declared in order to show studio ext in the LPhyExtension Manager.
// LPhy extensions
uses lphy.core.spi.Extension;
// declare what service interface the provider intends to use
provides lphy.core.spi.Extension with lphystudio.spi.LPhyStudioImpl, lphystudio.spi.ValueFormatterStudioImpl;
}