Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 3dd9f94c54f08f276825f1e113279ed97c499bde (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
/*****************************************************************************
 * Copyright (c) 2010 Atos Origin.
 *
 *    
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 *
 * Contributors:
 *  Emilien Perico (Atos Origin) emilien.perico@atosorigin.com - Initial API and implementation
 *
 *****************************************************************************/
package org.eclipse.papyrus.infra.services.resourceloading.preferences;

import org.eclipse.papyrus.infra.gmfdiag.preferences.Activator;
import org.eclipse.papyrus.infra.services.resourceloading.IStrategyChooser;


/**
 * The Class StrategyChooser.
 */
public class StrategyChooser implements IStrategyChooser {

	/** The current strategy. */
	private static Integer currentStrategy = -1;

	/**
	 * Instantiates a new strategy chooser.
	 */
	public StrategyChooser() {
	}

	/**
	 * @see org.eclipse.papyrus.infra.services.resourceloading.IStrategyChooser#getCurrentStrategy()
	 */
	public int getCurrentStrategy() {
		if(currentStrategy == -1) {
			// set the current strategy at the first time
			currentStrategy = Activator.getDefault().getPreferenceStore().getInt(ICorePreferenceConstants.PREF_CORE_DEFINE_LOADING_STRATEGY);
		}
		return currentStrategy;
	}

	/**
	 * Sets the current strategy.
	 * 
	 * @param strategy
	 *        the new current strategy ID
	 */
	public static void setCurrentStrategy(int strategy) {
		currentStrategy = strategy;
		if(Activator.getDefault().getPreferenceStore().getInt(ICorePreferenceConstants.PREF_CORE_DEFINE_LOADING_STRATEGY) != strategy) {
			Activator.getDefault().getPreferenceStore().setValue(ICorePreferenceConstants.PREF_CORE_DEFINE_LOADING_STRATEGY, String.valueOf(strategy));
		}
	}



}

Back to the top