package CorbaServer;

import com.sun.java.swing.UIManager;

public class CorbaApplication {
  boolean packFrame = false;

  //Construct the application
  
  public CorbaApplication() {
    CorbaFrame frame = new CorbaFrame();
    //Validate frames that have preset sizes
    //Pack frames that have useful preferred size info, e.g. from their layout
    if (packFrame)
      frame.pack();
    else
      frame.validate();
    frame.setVisible(true);
  }
//Main method
  
  public static void main(String[] args) {
    try  {
      UIManager.setLookAndFeel(new com.sun.java.swing.plaf.windows.WindowsLookAndFeel());
      //UIManager.setLookAndFeel(new com.sun.java.swing.plaf.motif.MotifLookAndFeel());
      //UIManager.setLookAndFeel(new com.sun.java.swing.plaf.metal.MetalLookAndFeel());
    }
    catch (Exception e) {
    }
    new CorbaApplication();
  }
}

 