Examples of CrosscutSurrogate


Examples of ch.ethz.prose.query.CrosscutSurrogate

            aspectList.add(getAspect());
            List tuples = getAspectManager().getAspectManager().queryAspects(aspectList,
                    QueryManager.SELECT_ASPECT | QueryManager.SELECT_CROSSCUT, QueryManager.GROUP_BY_CROSSCUT);
            CrosscutNode[] result = new CrosscutNode[tuples.size()];
            for (int i = 0; i < result.length; i++) {
                CrosscutSurrogate crosscut = ((Tuple) tuples.get(i)).getCrosscutSurrogate();
                result[i] = new CrosscutNode(this, crosscut);
            }
            return result;
        } catch (UnreachableException e) {
            return null;
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.