Package org.erlide.backend.debug.model

Examples of org.erlide.backend.debug.model.ErlangProcess.fireChangeEvent()


            handleRunningStatus(erlangProcess, status);
        } else if (status.equals("idle")) {
            handleIdleStatus(erlangProcess, status);
        } else {
            erlangProcess.setStatus(status);
            erlangProcess.fireChangeEvent(DebugEvent.STATE | DebugEvent.CHANGE);
        }
    }

    private void handleIdleStatus(final ErlangProcess erlangProcess, final String status) {
        // FIXME: this must be cleaned, but the status messages seem
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.