Project

General

Profile

Download (1.56 KB) Statistics
| Branch: | Tag: | Revision:
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
    private static final String RESET_USAGE_DATA = Messages.UseObjectManager_RESET_DATA;
30

    
31

    
32
    public UseObjectManager() {
33
		CdmStore.getContextManager().addContextListener(this);
34
	}
35

    
36

    
37
	@Override
38
	public void contextRefresh(IProgressMonitor monitor) {
39
		monitor.subTask(RESET_USAGE_DATA);
40
		MessagingUtils.warn(getClass(), RESET_USAGE_DATA);
41
		UseObjectStore.reset();
42
	}
43

    
44

    
45
	@Override
46
	public void contextStart(IMemento memento, IProgressMonitor monitor) {
47
//		monitor.subTask("Starting the Uses View");
48
//		MessagingUtils.warn(getClass(), "Starting Uses View warn");
49
		UseObjectStore.reset();
50
	}
51

    
52

    
53
}
(17-17/19)