Project

General

Profile

Download (1.08 KB) Statistics
| Branch: | Tag: | Revision:
1 27b59ab1 n.hoffmann
/**
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.model;
11
12
import org.eclipse.core.runtime.IProgressMonitor;
13
import org.eclipse.ui.IMemento;
14
15
/**
16
 * Empty implementation for convenience
17 3be6ef3e n.hoffmann
 *
18 27b59ab1 n.hoffmann
 * @author n.hoffmann
19
 * @created Sep 30, 2010
20
 * @version 1.0
21
 */
22
public class ContextListenerAdapter implements IContextListener {
23
24 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
25 27b59ab1 n.hoffmann
	@Override
26
	public void contextAboutToStop(IMemento memento, IProgressMonitor monitor) {
27
		
28
	}
29
30 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
31 27b59ab1 n.hoffmann
	@Override
32
	public void contextStop(IMemento memento, IProgressMonitor monitor) {
33
		
34
	}
35
36 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
37 27b59ab1 n.hoffmann
	@Override
38
	public void contextStart(IMemento memento, IProgressMonitor monitor) {
39
		
40 32563c64 n.hoffmann
	}
41
	
42
	@Override
43
	public void contextRefresh(IProgressMonitor monitor) {
44
		
45 27b59ab1 n.hoffmann
	}
46
47 3be6ef3e n.hoffmann
	/** {@inheritDoc} */
48 27b59ab1 n.hoffmann
	@Override
49
	public void workbenchShutdown(IMemento memento, IProgressMonitor monitor) {
50
		
51
	}
52
}