added checks to makes sure no other exception is thrown within the dialog creation...
[taxeditor.git] / eu.etaxonomy.taxeditor.store / src / main / java / eu / etaxonomy / taxeditor / model / ContextListenerAdapter.java
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 /* (non-Javadoc)
26 * @see eu.etaxonomy.taxeditor.model.IContextListener#contextAboutToStop(org.eclipse.ui.IMemento, org.eclipse.core.runtime.IProgressMonitor)
27 */
28 /** {@inheritDoc} */
29 @Override
30 public void contextAboutToStop(IMemento memento, IProgressMonitor monitor) {
31
32 }
33
34 /* (non-Javadoc)
35 * @see eu.etaxonomy.taxeditor.model.IContextListener#contextStop(org.eclipse.ui.IMemento, org.eclipse.core.runtime.IProgressMonitor)
36 */
37 /** {@inheritDoc} */
38 @Override
39 public void contextStop(IMemento memento, IProgressMonitor monitor) {
40
41 }
42
43 /* (non-Javadoc)
44 * @see eu.etaxonomy.taxeditor.model.IContextListener#contextStart(org.eclipse.ui.IMemento, org.eclipse.core.runtime.IProgressMonitor)
45 */
46 /** {@inheritDoc} */
47 @Override
48 public void contextStart(IMemento memento, IProgressMonitor monitor) {
49
50 }
51
52 /* (non-Javadoc)
53 * @see eu.etaxonomy.taxeditor.model.IContextListener#contextRefresh(org.eclipse.core.runtime.IProgressMonitor)
54 */
55 @Override
56 public void contextRefresh(IProgressMonitor monitor) {
57
58 }
59
60 /* (non-Javadoc)
61 * @see eu.etaxonomy.taxeditor.model.IContextListener#workbenchShutdown(org.eclipse.ui.IMemento, org.eclipse.core.runtime.IProgressMonitor)
62 */
63 /** {@inheritDoc} */
64 @Override
65 public void workbenchShutdown(IMemento memento, IProgressMonitor monitor) {
66
67 }
68 }