Project

General

Profile

Download (1.08 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.model;
11

    
12
import org.eclipse.core.runtime.IProgressMonitor;
13
import org.eclipse.ui.IMemento;
14

    
15
/**
16
 * Empty implementation for convenience
17
 *
18
 * @author n.hoffmann
19
 * @created Sep 30, 2010
20
 * @version 1.0
21
 */
22
public class ContextListenerAdapter implements IContextListener {
23

    
24
	/** {@inheritDoc} */
25
	@Override
26
	public void contextAboutToStop(IMemento memento, IProgressMonitor monitor) {
27
		
28
	}
29

    
30
	/** {@inheritDoc} */
31
	@Override
32
	public void contextStop(IMemento memento, IProgressMonitor monitor) {
33
		
34
	}
35

    
36
	/** {@inheritDoc} */
37
	@Override
38
	public void contextStart(IMemento memento, IProgressMonitor monitor) {
39
		
40
	}
41
	
42
	@Override
43
	public void contextRefresh(IProgressMonitor monitor) {
44
		
45
	}
46

    
47
	/** {@inheritDoc} */
48
	@Override
49
	public void workbenchShutdown(IMemento memento, IProgressMonitor monitor) {
50
		
51
	}
52
}
(9-9/41)