add more status notifications to core listener
[jSite2.git] / src / net / pterodactylus / jsite / main / Main.java
1 /*
2  * jSite2 - Main.java -
3  * Copyright © 2008 David Roden
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18  */
19
20 package net.pterodactylus.jsite.main;
21
22 import java.io.File;
23
24 import net.pterodactylus.jsite.core.Core;
25 import net.pterodactylus.jsite.core.NodeManager;
26 import net.pterodactylus.jsite.core.ProjectManager;
27 import net.pterodactylus.jsite.gui.SwingInterface;
28
29 /**
30  * Main class that is called by the VM.
31  *
32  * @author David ‘Bombe’ Roden <bombe@freenetproject.org>
33  * @version $Id$
34  */
35 public class Main {
36
37         /**
38          * Main entry method for the VM.
39          *
40          * @param args
41          *            The command-line arguments
42          */
43         public static void main(String[] args) {
44                 new Main().start();
45         }
46
47         /**
48          * Starts the core and the default {@link SwingInterface}.
49          */
50         private void start() {
51                 Core core = new Core();
52
53                 String configDirectory = System.getProperty("user.home") + File.separator + ".jSite";
54
55                 ProjectManager projectManager = new ProjectManager(configDirectory);
56                 core.setProjectManager(projectManager);
57
58                 NodeManager nodeManager = new NodeManager("jSite-" + Version.getVersion(), configDirectory);
59                 core.setNodeManager(nodeManager);
60
61                 SwingInterface swingInterface = new SwingInterface(core, configDirectory);
62                 core.addCoreListener(swingInterface);
63                 swingInterface.start();
64
65                 core.start();
66         }
67
68 }