Package dk.brics.jwig.analysis.jaive

Examples of dk.brics.jwig.analysis.jaive.Plugging


    public Collection<Plugging> getPluggings() {
        return plugLocations.values();
    }

    public MethodStatementContainer getPlugLocation(InvokeExpr expr) {
        final Plugging plugging = plugLocations.get(expr);
        if (plugging == null)
            throw new IllegalArgumentException("Unknown expression:" + expr);
        final MethodStatementContainer methodStatementContainer = plugging
                .getContainer();
        return methodStatementContainer;
    }
View Full Code Here

TOP

Related Classes of dk.brics.jwig.analysis.jaive.Plugging

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.