Package org.erlide.test_support.ui.suites.TestCaseData

Examples of org.erlide.test_support.ui.suites.TestCaseData.FailStackItem


                final Object data = tree.getSelection()[0].getData();
                if (data instanceof TestCaseData) {
                    final TestCaseData testData = (TestCaseData) data;
                    openMF(testData.getModule(), testData.getFunction());
                } else if (data instanceof FailStackItem) {
                    final FailStackItem item = (FailStackItem) data;
                    openMF(item.getModule(), item.getFunction());
                } else if (data instanceof FailReason) {
                    final FailReason reason = (FailReason) data;
                    final FailStackItem item = reason.getFirstStackItem();
                    if (item != null) {
                        openMF(item.getModule(), item.getFunction());
                    }
                }
            }
        });
        tree.setLinesVisible(true);
View Full Code Here

TOP

Related Classes of org.erlide.test_support.ui.suites.TestCaseData.FailStackItem

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.