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

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

Introduction

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

Prototype

public void store() 

Source Link

Document

Stores this field editor's value back into the preference store.

Usage

From source file:org.eclipse.linuxtools.internal.systemtap.ui.ide.preferences.EnvironmentVariablesPreferencePage.java

License:Open Source License

/**
 * Stores the modified environment variables.
 *
 * @return True./*from  www . j  a  v a2  s .  c o  m*/
 */
@Override
public boolean performOk() {
    for (StringFieldEditor envVariable : envVariables) {
        envVariable.store();
    }

    return true;
}