Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: b2d6b22680da445005a7c1f6f06764bfb5924f41 (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
/*******************************************************************************
 * Copyright (c) 2005, 2015 IBM Corporation and others.
 * 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:
 *     IBM Corporation - initial API and implementation
 *******************************************************************************/
package org.eclipse.core.internal.preferences.exchange;

import java.util.Properties;

/**
 * A product can customize preferences by implementing this service.
 *
 * This interface is likely going to change as the application model is introduced
 * in which point it might be kept for backward compatibility or removed entirely.
 *
 * @since org.eclipse.equinox.common 3.2
 */
public interface IProductPreferencesService {

	/**
	 * Returns properties specified in the product customization file.
	 *
	 * @return default preferences specified by the product.
	 */
	public Properties getProductCustomization();

	/**
	 * Returns translations for the customized properties.
	 *
	 * @return translation table for default preferences
	 */
	public Properties getProductTranslation();
}

Back to the top