Package ariba.ui.aribaweb.core

Examples of ariba.ui.aribaweb.core.AWBaseElement.templateName()


                {
                    printWriter.println("\tat " + trace[i]);
                }
                AWBaseElement cref = _componentStack.get(pos++);
                StackTraceElement compElement = trace[i + 1];
                String tName = cref.templateName();
                tName = (tName == null) ? "null" :
                    tName.substring(tName.lastIndexOf('/') + 1);

                printWriter.print("\tat " + compElement.getClassName());
                if (compElement.getClassName().equals(AWComponent.class.getName())
View Full Code Here


            }
            else if (pos < _componentStack.size()
                && trace[i].getClassName().equals(AWIncludeContent.class.getName()))
            {
                AWBaseElement cref = _componentStack.get(pos++);
                String tName = cref.templateName();
                tName = (tName == null) ? "null"
                    : tName.substring(tName.lastIndexOf('/') + 1);

                printWriter.println("\tat " + trace[i] + "<" + tName + ":"
                    + cref.lineNumber() + ">");
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.