Project

General

Profile

Download (949 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/*******************************************************************************
2
 * Copyright (c) 2014 OPCoach.
3
 * All rights reserved. This program and the accompanying materials
4
 * are made available under the terms of the Eclipse Public License v1.0
5
 * which accompanies this distribution, and is available at
6
 * http://www.eclipse.org/legal/epl-v10.html
7
 *
8
 * Contributors:
9
 *     OPCoach - initial API and implementation
10
 *******************************************************************************/
11
package com.opcoach.e4.preferences;
12

    
13
import org.eclipse.jface.preference.IPreferenceStore;
14

    
15
/** This interface can be implemented to provide a PreferenceStore for a given plugin. 
16
 * This associatino must be done in the e4PreferenceStoreProvider extension point. 
17
 * @author olivier
18
 *
19
 */
20
public interface IPreferenceStoreProvider
21
{
22
	/** Must be implemented to return a preference store */
23
	public IPreferenceStore getPreferenceStore();
24

    
25
}
(2-2/3)