// GraphTea Project: http://github.com/graphtheorysoftware/GraphTea
// Copyright (C) 2012 Graph Theory Software Foundation: http://GraphTheorySoftware.com
// Copyright (C) 2008 Mathematical Science Department of Sharif University of Technology
// Distributed under the terms of the GNU General Public License (GPL): http://www.gnu.org/licenses/
package graphtea.plugins.main.select;
import graphtea.platform.core.BlackBoard;
import graphtea.platform.core.exception.ExceptionHandler;
import graphtea.ui.UI;
import java.io.IOException;
/**
* @author Reza Mohammadi
*/
public class Init implements graphtea.platform.plugin.PluginInterface {
public void init(BlackBoard blackboard) {
UI ui = (UI) blackboard.getData(UI.name);
try {
ui.addXML("/graphtea/plugins/main/select/SelectUI.xml", getClass());
} catch (IOException e) {
ExceptionHandler.catchException(e);
System.out.println("xml file was not found , or IO error");
} catch (Exception e) {
ExceptionHandler.catchException(e);
}
}
}