Package client.ws.milanas.main

Source Code of client.ws.milanas.main.MilanasWSClient

/*
* File: MilanasWSClient.java
* Created on 8 / desembre / 2007, 17:23
*
* Copyright (C) 2008 M.Àngels Cerveró Abelló
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

package client.ws.milanas.main;

import client.ws.milanas.cart.AmazonCartWrapper;
import client.ws.milanas.controller.Controller;
import client.ws.milanas.gui.MilanasWSClientGUI;
import client.ws.milanas.searcher.AmazonItemSearcher;

/**
*
* @author milana
*/
public class MilanasWSClient
{
   
    /**
     * Creates a new instance of MilanasWSClient
     */
    public MilanasWSClient(){}
   
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args)
    {
        AmazonItemSearcher ais = new AmazonItemSearcher();
        AmazonCartWrapper cw = new AmazonCartWrapper();
        Controller controller = new Controller(ais, cw);
        MilanasWSClientGUI gui = new MilanasWSClientGUI(controller);
        gui.setVisible(true);
    }
   
}
TOP

Related Classes of client.ws.milanas.main.MilanasWSClient

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.