gov.nih.nlm.nls.lvg.Tools.GuiTool.Exec.lgt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lvg2010dist Show documentation
Show all versions of lvg2010dist Show documentation
LVG tools is used by Apache cTAKES.
The newest version!
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
import GuiTool.Global.*;
import GuiTool.Gui.*;
public class lgt
{
public static void main(String[] args)
{
// read in configuration
if(args.length > 1)
{
System.out.println("Usage: java Lgt ");
System.exit(0);
}
else if(args.length == 1)
{
String config = args[0];
LvgGlobal.SetConfig(config);
}
LvgFrame lvgFrame = new LvgFrame();
lvgFrame.setVisible(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy