Package soot

Examples of soot.ArrayType


            if (t instanceof RefType) {
                RefType refType = (RefType) t;
                usesSession = isSession(refType);
            } else if (t instanceof ArrayType) {
                // check if the array is a Session[]
                ArrayType arrayType = (ArrayType) t;
                Type type = arrayType.getElementType();
                if (type instanceof RefType) {
                    usesSession = isSession((RefType) type);
                }
            }
        }
View Full Code Here

TOP

Related Classes of soot.ArrayType

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.