Examples of PreferenceSettingStore


Examples of org.eclipse.tm.internal.terminal.provisional.api.PreferenceSettingStore

        settings.setKeepalive("300");
        settings.setTimeout("45");

        try {
          Method mGetStore = Objects.getMethodDescriptor(connectorView, "getPreferenceSettingsStore", TerminalView.class, null);
          PreferenceSettingStore store = (PreferenceSettingStore)mGetStore.invoke(connectorView, null);
          // When the settings dialog is closed, we persist the Terminal settings.
          Method mSave = Objects.getMethodDescriptor(connectorView, "saveSettings", TerminalView.class, ISettingsStore.class, ITerminalConnector.class);
          // we also save it in the preferences. This will keep the last change
          // made to this connector as default...
          mSave.invoke(connectorView, store, conn);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.