1 package org.apache.beehive.controls.runtime.generator; 2 19 20 import com.sun.mirror.declaration.MethodDeclaration; 21 22 import org.apache.beehive.controls.runtime.generator.apt.TwoPhaseAnnotationProcessor; 23 24 28 public class AptEventHandler extends AptMethod 29 { 30 36 public AptEventHandler(AptEvent event, MethodDeclaration handlerDecl, TwoPhaseAnnotationProcessor ap) 37 { 38 super(handlerDecl, ap); 39 _event = event; 40 _handlerDecl = handlerDecl; 41 } 42 43 46 public AptEvent getEvent() { return _event; } 47 48 MethodDeclaration _handlerDecl; 49 private AptEvent _event; 50 } 51 | Popular Tags |