List of usage examples for org.eclipse.jface.preference StringFieldEditor store
public void store()
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; }