Project

General

Profile

Download (1.19 KB) Statistics
| Branch: | Tag: | Revision:
1
/**
2
* Copyright (C) 2007 EDIT
3
* European Distributed Institute of Taxonomy
4
* http://www.e-taxonomy.eu
5
*
6
* The contents of this file are subject to the Mozilla Public License Version 1.1
7
* See LICENSE.TXT at the top of this package for the full license terms.
8
*/
9

    
10
package eu.etaxonomy.taxeditor.store.operations;
11

    
12
import org.eclipse.core.commands.operations.IUndoContext;
13
import org.eclipse.core.runtime.IAdaptable;
14
import org.eclipse.core.runtime.IProgressMonitor;
15

    
16
import eu.etaxonomy.cdm.model.taxon.Taxon;
17
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
18
import eu.etaxonomy.taxeditor.operation.RemotingCdmUpdateOperation;
19
import eu.etaxonomy.taxeditor.session.ICdmEntitySessionEnabled;
20

    
21
/**
22
 * @author n.hoffmann
23
 * @created 15.04.2009
24
 * @version 1.0
25
 */
26
public abstract class AbstractTaxeditorOperationTestBase {
27

    
28
	public static final IUndoContext undoContext = null;
29

    
30
	public static final IProgressMonitor monitor = null;
31
	public static final IAdaptable info = null;
32
	public static final IPostOperationEnabled postOperation = null;
33
	public static final ICdmEntitySessionEnabled cdmEntitySessionEnabled = null;
34

    
35
	protected static RemotingCdmUpdateOperation operation;
36
	protected static Taxon taxon;
37
}
(1-1/2)