merge-update of trunk and disabling GUI-Control separation
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / store / StoreUtil.java
1 // $Id$
2 /**
3 * Copyright (C) 2007 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10
11 package eu.etaxonomy.taxeditor.store;
12
13 import java.util.UUID;
14
15 import org.eclipse.core.commands.operations.IOperationHistory;
16 import org.eclipse.core.commands.operations.IUndoContext;
17 import org.eclipse.jface.action.IStatusLineManager;
18 import org.eclipse.ui.IEditorInput;
19 import org.eclipse.ui.IEditorPart;
20
21 import eu.etaxonomy.taxeditor.model.AbstractUtility;
22 import eu.etaxonomy.taxeditor.store.internal.TaxeditorStorePlugin;
23
24 /**
25 * <p>StoreUtil class.</p>
26 *
27 * @author n.hoffmann
28 * @created 11.05.2009
29 * @version 1.0
30 */
31 public class StoreUtil extends AbstractUtility {
32
33 /**
34 * <p>checktaxonExists</p>
35 *
36 * @param fromString a {@link java.util.UUID} object.
37 */
38 public static void checktaxonExists(UUID fromString) {
39 // if (CdmStore.getTaxonService().getTaxonByUuid(UUID.fromString(uuid)) == null) {
40 // logger.warn("Couldn't find taxon with UUID " + uuid);
41 // return null;
42 // }
43 }
44
45 /**
46 * <p>getOperationHistory</p>
47 *
48 * @return a {@link org.eclipse.core.commands.operations.IOperationHistory} object.
49 */
50 public static IOperationHistory getOperationHistory() {
51 return TaxeditorStorePlugin.getDefault().getWorkbench().
52 getOperationSupport().getOperationHistory();
53 }
54
55 /**
56 * <p>setStatusLineManager</p>
57 *
58 * @param manager a {@link org.eclipse.jface.action.IStatusLineManager} object.
59 */
60 public static void setStatusLineManager(IStatusLineManager manager) {
61 statusLineManager = manager;
62 }
63
64
65 /**
66 * <p>getUndoContext</p>
67 *
68 * @return a {@link org.eclipse.core.commands.operations.IUndoContext} object.
69 */
70 public static IUndoContext getUndoContext(){
71 return IOperationHistory.GLOBAL_UNDO_CONTEXT;
72 }
73
74 /**
75 * <p>getPluginId</p>
76 *
77 * @return a {@link java.lang.String} object.
78 */
79 public static String getPluginId(){
80 return TaxeditorStorePlugin.PLUGIN_ID;
81 }
82
83 /**
84 *
85 * @return
86 */
87 public static IEditorInput getActiveEditorInput() {
88 IEditorPart activeEditor = getActiveEditor();
89 if (activeEditor != null){
90 return activeEditor.getEditorInput();
91 }
92 return null;
93 }
94 }