Use internal SNAPSHOT couplings again
[trakem2.git] / TrakEM2_ / src / main / java / ini / trakem2 / Open_Project.java
blob005a685937fdff37735eb8fee42363d8381324ec
1 /**
3 TrakEM2 plugin for ImageJ(C).
4 Copyright (C) 2005-2009 Albert Cardona and Rodney Douglas.
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation (http://www.gnu.org/licenses/gpl.txt )
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.
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.
19 You may contact Albert Cardona at acardona at ini.phys.ethz.ch
20 Institute of Neuroinformatics, University of Zurich / ETH, Switzerland.
21 **/
22 package ini.trakem2;
24 import ij.plugin.PlugIn;
25 //import ini.trakem2.utils.BigBrother;
27 public class Open_Project implements PlugIn {
29 public void run(String arg) {
30 //BigBrother bb = new BigBrother("TrakEM2");
31 //new Thread(bb, "Open_Project_thread") {
32 // public void run() {
33 Project.openFSProject(null);
34 // }
35 //}.start();
37 // The big brother ThreadGroup approach makes the ij.Macro not find the proper arguments, so that XML projets are no londer readable from macro files. Plus I don't get for free all other threads to belong to this group.