/*******************************************************************************
* Copyright (c) 2011 Pieter Pareit.
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* Contributors:
* Pieter Pareit - initial API and implementation
******************************************************************************/
package adbconnect.preferences;
import org.eclipse.jface.preference.FieldEditorPreferencePage;
import org.eclipse.jface.preference.StringFieldEditor;
import org.eclipse.ui.IWorkbench;
import org.eclipse.ui.IWorkbenchPreferencePage;
import adbconnect.Activator;
public class Page extends FieldEditorPreferencePage implements
IWorkbenchPreferencePage {
@Override
protected void createFieldEditors() {
addField(new StringFieldEditor(Activator.IP_ADDRESS_SETTING,
"&IP address of device:",
getFieldEditorParent()));
addField(new StringFieldEditor(Activator.PORT_NUMBER_SETTING,
"&Port number:",
getFieldEditorParent()));
}
@Override
public void init(IWorkbench workbench) {
setPreferenceStore(Activator.getDefault().getPreferenceStore());
}
}