public static void main(String[] args) {
    try {
      UIManager.setLookAndFeel(new Plastic3DLookAndFeel());
    } catch (Exception exception) {
      exception.printStackTrace();
    }

    GoodiesForm form = new GoodiesForm();
    form.pack();
    form.setVisible(true);
  }