Package ch.ethz.prose.query

Examples of ch.ethz.prose.query.JoinPointRequestSurrogate


            crosscutList.add(crosscut);
            List tuples = aspect.getAspectManager().getAspectManager().queryCrosscuts(crosscutList, QueryManager.SELECT_ALL,
                    QueryManager.GROUP_BY_JOINPOINT);
            JoinPointNode[] result = new JoinPointNode[tuples.size()];
            for (int i = 0; i < result.length; i++) {
                JoinPointRequestSurrogate joinPoint = ((Tuple) tuples.get(i)).getRequestSurrogate();
                result[i] = new JoinPointNode(this, joinPoint);
            }
            return result;
        } catch (UnreachableException e) {
            return null;
View Full Code Here

TOP

Related Classes of ch.ethz.prose.query.JoinPointRequestSurrogate

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.