Package ru.andrew.jclazz.core.code.ops

Examples of ru.andrew.jclazz.core.code.ops.Operation


            sb.append("[" + cet.start_pc + "-" + cet.end_pc + "): " + cet.handler_pc + (cet.catch_type != null ? " - " + cet.catch_type.getFullyQualifiedName() : "")).append("<BR>");
        }
        sb.append("<HR>");
        for (Iterator i = codeAttr.getOperations().iterator(); i.hasNext();)
        {
            Operation oper = (Operation) i.next();
            sb.append("        " + oper.asString()).append("<BR>");
        }

        sb.append("</html>");
        description = sb.toString();
View Full Code Here

TOP

Related Classes of ru.andrew.jclazz.core.code.ops.Operation

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.