71727374757677
public void push(Object obj) { getThreadStack().push(obj); } public void pushInstance(Object obj) { getThreadStack().push(new CFlow(obj)); }
8990919293949596
if (stack.isEmpty()) throw new org.aspectj.lang.NoAspectBoundException(); return (Object)stack.peek(); } public Object get(int index) { CFlow cf = peekCFlow(); return (null == cf ? null : cf.get(index)); }
949596979899100101102
CFlow cf = peekCFlow(); return (null == cf ? null : cf.get(index)); } public Object peekInstance() { CFlow cf = peekCFlow(); if (cf != null ) return cf.getAspect(); else throw new NoAspectBoundException(); }
93949596979899100
9899100101102103104105106