Merge branch 'develop' of wp5.e-taxonomy.eu:/var/git/taxeditor into remoting-4.0
[taxeditor.git] / eu.etaxonomy.taxeditor.editor / src / main / java / eu / etaxonomy / taxeditor / editor / UseObjectManager.java
1 /**
2 * Copyright (C) 2011 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 package eu.etaxonomy.taxeditor.editor;
10
11 import org.eclipse.core.runtime.IProgressMonitor;
12 import org.eclipse.ui.IMemento;
13
14 import eu.etaxonomy.taxeditor.model.ContextListenerAdapter;
15 import eu.etaxonomy.taxeditor.model.MessagingUtils;
16 import eu.etaxonomy.taxeditor.store.CdmStore;
17 import eu.etaxonomy.taxeditor.store.UseObjectStore;
18
19 /**
20 * The context listener will call this class when a new context is started.
21 * It will reset the UseObjectStore to guarantee the static
22 * content of the store will be refreshed each time we load a new context.
23 * @author a.theys
24 * @author a.mueller
25 * @created mar 13, 2012
26 */
27 public class UseObjectManager extends ContextListenerAdapter{
28
29 public UseObjectManager() {
30 CdmStore.getContextManager().addContextListener(this);
31 }
32
33
34 @Override
35 public void contextRefresh(IProgressMonitor monitor) {
36 monitor.subTask("Reset usage data");
37 MessagingUtils.warn(getClass(), "Reset usage data");
38 UseObjectStore.reset();
39 }
40
41
42 @Override
43 public void contextStart(IMemento memento, IProgressMonitor monitor) {
44 // monitor.subTask("Starting the Uses View");
45 // MessagingUtils.warn(getClass(), "Starting Uses View warn");
46 UseObjectStore.reset();
47 }
48
49
50 }