Package org.erlide.backend.api

Examples of org.erlide.backend.api.BackendData


        return b;
    }

    private BackendData getIdeBackendData() {
        final RuntimeInfo info = getIdeRuntimeInfo();
        final BackendData result = new BackendData(info);
        result.setNodeName(getIdeNodeName());
        result.setDebug(false);
        result.setConsole(SystemConfiguration.getInstance().isDeveloper());
        result.setManaged(true);
        result.setRestartable(true);
        result.setLongName(SystemConfiguration.hasFeatureEnabled(Features.USE_SHORTNAME) ? false
                : HostnameUtils.canUseLongNames());
        result.setInternal(true);
        result.setReportErrors(true);
        result.setContext(CodeContext.IDE);
        return result;
    }
View Full Code Here


    }

    private BackendData getBuildBackendData(final @NonNull RuntimeInfo info) {
        final RuntimeInfo myinfo = new RuntimeInfo(info);

        final BackendData result = new BackendData(myinfo);
        result.setNodeName(info.getVersion().asMajor().toString() + "_"
                + BackendUtils.getErlideNodeNameTag());
        result.setCookie("erlide");
        result.setRestartable(true);
        result.setDebug(false);
        result.setManaged(true);
        result.setConsole(false);
        result.setLongName(HostnameUtils.canUseLongNames());
        result.setInternal(true);
        result.setReportErrors(true);
        result.setContext(CodeContext.IDE);
        return result;
    }
View Full Code Here

    }

    @Override
    protected BackendData configureBackend(final BackendData data, final String mode,
            final ILaunch launch) {
        final BackendData myData = super.configureBackend(data, mode, launch);
        myData.setConsole(true);
        myData.setLongName(false);
        myData.setReportErrors(true);
        myData.setNodeName(CoverBackend.NODE_NAME);
        myData.setUseStartShell(true);
        return myData;
    }
View Full Code Here

TOP

Related Classes of org.erlide.backend.api.BackendData

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.