Package org.drools.eclipse.debug.AuditView

Examples of org.drools.eclipse.debug.AuditView.Event


        setText("Show Cause");
        setId(DroolsEclipsePlugin.getUniqueIdentifier() + ".ShowEventCause");
    }

    public void run() {
        Event event = view.getSelectedEvent();
        if (event != null) {
            Event cause = event.getCauseEvent();
            if (cause != null) {
                view.showEvent(cause);
            }
        }
    }
View Full Code Here

TOP

Related Classes of org.drools.eclipse.debug.AuditView.Event

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.