Example usage for org.eclipse.jface.preference StringFieldEditor getPreferenceStore

List of usage examples for org.eclipse.jface.preference StringFieldEditor getPreferenceStore

Introduction

In this page you can find the example usage for org.eclipse.jface.preference StringFieldEditor getPreferenceStore.

Prototype

public IPreferenceStore getPreferenceStore() 

Source Link

Document

Returns the preference store used by this field editor.

Usage

From source file:org.eclipse.ptp.remotetools.preferences.events.FollowBeginStringFieldEditorPropertyChangeListener.java

License:Open Source License

/**
 * /*from  w w  w  .j  av  a  2s . c o m*/
 */
public FollowBeginStringFieldEditorPropertyChangeListener(StringFieldEditor stringFieldEditor,
        Composite parent) {
    this.stringFieldEditor = stringFieldEditor;
    this.textControl = stringFieldEditor.getTextControl(parent);
    this.display = this.textControl.getDisplay();
    this.preferenceStore = stringFieldEditor.getPreferenceStore();
    this.preferenceName = stringFieldEditor.getPreferenceName();
}