SwingApplication.java
01 package net.sf.annocon.examples.configuration.menu;
02 
03 
04 /**
05  * Example swing application. Menu items are contributed by subcontexts (plugins).
06  *
07  @author Achim Huegen
08  */
09 public class SwingApplication
10 {
11   public static void main(String[] args)
12   {
13     SwingContext context = new SwingContext();
14     context.getMainFrame().setVisible(true);
15   }
16 }