Package org.erlide.util

Examples of org.erlide.util.NodeHostClassifier


        super.updateLaunchConfigurationDialog();
    }

    private void updateDialogStatus() {
        setMessage(null);
        final NodeHostClassifier state = new NodeHostClassifier(nameText.getText().trim());

        longNameButton.setEnabled(!(state.mode == NodeType.LOCAL_STANDALONE)
                && state.host == HostnameType.NONE && HostnameUtils.canUseLongNames());
        shortNameButton.setEnabled(!(state.mode == NodeType.LOCAL_STANDALONE)
                && state.host == HostnameType.NONE && HostnameUtils.canUseShortNames());
View Full Code Here

TOP

Related Classes of org.erlide.util.NodeHostClassifier

Copyright © 2018 www.massapicom. 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.