KickJava   Java API By Example, From Geeks To Geeks.

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


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

10 public class ExceptionThrowJoinPointImpl extends ExceptionJoinPointImpl implements ExceptionJoinPoint {
11
12     public String JavaDoc getKind() {
13         return KIND_EXCEPTION_THROW_ARGS_JP;
14     }
15
16     public int getMask() {
17         return MASK_CODE_JP | MASK_EXCEPTION_THROW_ARGS_JP;
18     }
19
20     public boolean hasHandler() {
21         throw new RuntimeException JavaDoc("TODO ExceptionThrowJoinPointImpl.hasHandler");
22     }
23
24     public Class JavaDoc handlerClass() {
25         throw new RuntimeException JavaDoc("TODO ExceptionThrowJoinPointImpl.handlerClass");
26     }
27
28 }
29
Popular Tags