Project

General

Profile

Download (1.06 KB) Statistics
| Branch: | Tag: | Revision:
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
import eu.etaxonomy.taxeditor.operation.AbstractPostOperation;
19
import eu.etaxonomy.taxeditor.operation.IPostOperationEnabled;
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
	
34
	protected static AbstractPostOperation operation;
35
	protected static Taxon taxon;
36
}
    (1-1/1)