01: package ch.ethz.prose.jvmai.jikesrvm.stub_weaver;
02:
03: import ch.ethz.jvmai.ExceptionCatchJoinPoint;
04:
05: /**
06: * Concrete implementation of a ExceptionCatchJoinPoint for the Jikes RVM.
07: *
08: * @author Johann Gyger
09: */
10: public class ExceptionCatchJoinPointImpl extends ExceptionJoinPointImpl
11: implements ExceptionCatchJoinPoint {
12:
13: public String getKind() {
14: return KIND_EXCEPTION_CATCH_ARGS_JP;
15: }
16:
17: public int getMask() {
18: return MASK_CODE_JP | MASK_EXCEPTION_CATCH_ARGS_JP;
19: }
20:
21: }
|