main.java :  » UnTagged » ampthy » net » sourceforge » javaocr » Android Open Source

Android Open Source » UnTagged » ampthy 
ampthy » net » sourceforge » javaocr » main.java
// main.java
// Copyright (c) 2010 William Whitney
// All rights reserved.
// This software is released under the BSD license.
// Please see the accompanying LICENSE.txt for details.
package net.sourceforge.javaocr;

import java.util.logging.Logger;
import net.sourceforge.javaocr.gui.GUIController;

/**
 * Launches the GUI controller for the javaocr toolkit.
 * @author William Whitney
 */
public class main
{

    public main()
    {
    }

    /**
     * Main method of application.
     * @param args none needed
     */
    public static void main(String[] args)
    {
        //Create GUI Controller
        GUIController guiController = new GUIController();
        guiController.showGUI();
    }
    private static final Logger LOG = Logger.getLogger(main.class.getName());
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.