/* * Created on 30-ago-2006 * */ package se.cambio.cds.gdl.editor.view.menubar; import se.cambio.cds.gdl.editor.controller.EditorManager; import se.cambio.cds.gdl.editor.util.GDLEditorLanguageManager; import se.cambio.openehr.util.ExceptionHandler; import se.cambio.openehr.util.exceptions.InstanceNotFoundException; import se.cambio.openehr.util.exceptions.InternalErrorException; import se.cambio.openehr.view.util.ImportUtils; import javax.swing.*; import java.awt.event.ActionEvent; import java.awt.event.KeyEvent; public class ImportArchetypeAction extends AbstractAction { /** * */ private static final long serialVersionUID = -3561842193285119707L; public ImportArchetypeAction(){ super(); putValue(NAME, GDLEditorLanguageManager.getMessage("ImportArchetype")); putValue(SMALL_ICON, null); putValue(SHORT_DESCRIPTION, GDLEditorLanguageManager.getMessage("ImportArchetypeD")); putValue(LONG_DESCRIPTION, GDLEditorLanguageManager.getMessage("ImportArchetypeD")); putValue(ACCELERATOR_KEY, KeyStroke.getKeyStroke(KeyEvent.VK_A, ActionEvent.CTRL_MASK+ActionEvent.SHIFT_MASK)); } /* (non-Javadoc) * @see java.awt.event.ActionListener#actionPerformed(java.awt.event.ActionEvent) */ public void actionPerformed(ActionEvent e) { try { ImportUtils.showImportArchetypeDialogAndAddToRepo(EditorManager.getActiveEditorWindow(), null); } catch (InternalErrorException e1) { ExceptionHandler.handle(e1); } catch (InstanceNotFoundException e1) { ExceptionHandler.handle(e1); } } } /* * ***** BEGIN LICENSE BLOCK ***** * Version: MPL 2.0/GPL 2.0/LGPL 2.1 * * The contents of this file are subject to the Mozilla Public License Version * 2.0 (the 'License'); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * http://www.mozilla.org/MPL/ * * Software distributed under the License is distributed on an 'AS IS' basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * * The Initial Developers of the Original Code are Iago Corbal and Rong Chen. * Portions created by the Initial Developer are Copyright (C) 2012-2013 * the Initial Developer. All Rights Reserved. * * Contributor(s): * * Software distributed under the License is distributed on an 'AS IS' basis, * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License * for the specific language governing rights and limitations under the * License. * * ***** END LICENSE BLOCK ***** */