1 /*******************************************************************************
2  * Copyright (c) 2014 Rapicorp Corporation and others.
3  *
4  * This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License 2.0
6  * which accompanies this distribution, and is available at
7  * https://www.eclipse.org/legal/epl-2.0/
8  *
9  * SPDX-License-Identifier: EPL-2.0
10  *
11  * Contributors:
12  *     Rapicorp Corporation - initial API and implementation
13  *******************************************************************************/
14 package org.eclipse.pde.internal.core.iproduct;
15 
16 public interface IPreferencesInfo extends IProductObject {
17 
18 	public static final String P_SOURCEFILEPATH = "sourcefilepath"; //$NON-NLS-1$
19 	public static final String P_OVERWRITE = "overwrite"; //$NON-NLS-1$
20 	public static final String P_TARGETFILEPATH = "targetfilepath"; //$NON-NLS-1$
21 
setSourceFilePath(String text)22 	void setSourceFilePath(String text);
23 
getSourceFilePath()24 	String getSourceFilePath();
25 
setOverwrite(String text)26 	void setOverwrite(String text);
27 
getOverwrite()28 	String getOverwrite();
29 
setPreferenceCustomizationPath(String text)30 	void setPreferenceCustomizationPath(String text);
31 
getPreferenceCustomizationPath()32 	String getPreferenceCustomizationPath();
33 
34 }
35