/* * wx4j: wxWindows bindings for Java * * Author: Dave Dribin * Copyright (c) 2003, The National Association of REALTORS * Distributed under a BSD-style license. See LICENSE.TXT for details. */ package org.wxwindows.samples.splitter; import org.wxwindows.wxApp; public class MyApp extends wxApp { public boolean OnInit() { wxInitAllImageHandlers(); MyFrame frame = new MyFrame(); frame.Show(true); return true; } public static void main(String args[]) { wxApp app = new MyApp(); app.MainLoop(); } }