/** * jEmbeddedFril.java * * Title: jEmbeddedFril * Description: Tutorial example based on test_emb.c in the Fril Foreign Language Interface manual * @author T. P. Martin * @date June 2001 * @version 1.0b1 */ import JTestEmbWindow; import javax.swing.*; public class jEmbeddedFril { public jEmbeddedFril() { try { // For native Look and Feel, uncomment the following code. /* try { UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName()); } catch (Exception e) { } */ JTestEmbWindow frame = new JTestEmbWindow(); frame.initComponents(); frame.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } // Main entry point static public void main(String[] args) { new jEmbeddedFril(); } }