ec150ba35690b2fbb94eae4da078459ec728091d
[taxeditor.git] / taxeditor-store / src / test / java / eu / etaxonomy / taxeditor / store / operations / AbstractTaxeditorOperationTest.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.operations;
12
13 import org.eclipse.core.commands.operations.IUndoContext;
14 import org.eclipse.core.runtime.IAdaptable;
15 import org.eclipse.core.runtime.IProgressMonitor;
16
17 import eu.etaxonomy.cdm.model.taxon.Taxon;
18
19 /**
20 * @author n.hoffmann
21 * @created 15.04.2009
22 * @version 1.0
23 */
24 public class AbstractTaxeditorOperationTest {
25
26 public static final IUndoContext undoContext = null;
27
28 public static final IProgressMonitor monitor = null;
29 public static final IAdaptable info = null;
30 public static final IPostOperationEnabled postOperation = null;
31
32 protected static AbstractPostOperation operation;
33 protected static Taxon taxon;
34 }