Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/exchange/IProductPreferencesService.java')
-rw-r--r--bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/exchange/IProductPreferencesService.java38
1 files changed, 0 insertions, 38 deletions
diff --git a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/exchange/IProductPreferencesService.java b/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/exchange/IProductPreferencesService.java
deleted file mode 100644
index e4b20d9e9..000000000
--- a/bundles/org.eclipse.equinox.preferences/src/org/eclipse/core/internal/preferences/exchange/IProductPreferencesService.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2005, 2006 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