Project

General

Profile

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

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

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

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

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

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

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