KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > ch > ethz > prose > jvmai > jikesrvm > stub_weaver > ExceptionCatchJoinPointImpl


1 package ch.ethz.prose.jvmai.jikesrvm.stub_weaver;
2
3 import ch.ethz.jvmai.ExceptionCatchJoinPoint;
4
5 /**
6  * Concrete implementation of a ExceptionCatchJoinPoint for the Jikes RVM.
7  *
8  * @author Johann Gyger
9  */

10 public class ExceptionCatchJoinPointImpl extends ExceptionJoinPointImpl implements ExceptionCatchJoinPoint {
11
12     public String JavaDoc getKind() {
13         return KIND_EXCEPTION_CATCH_ARGS_JP;
14     }
15
16     public int getMask() {
17         return MASK_CODE_JP | MASK_EXCEPTION_CATCH_ARGS_JP;
18     }
19
20 }
21
Popular Tags