1 27 package ch.ethz.prose.crosscut; 28 29 import java.util.Vector ; 31 32 import ch.ethz.prose.engine.JoinPointRequest; 33 34 42 public 43 class CrosscutRequest extends Vector { 44 45 public static String CROSSCUT= "crosscutRequest"; 46 47 48 56 public boolean add(Object eventRequest) 57 throws ClassCastException , 58 UnsupportedOperationException , 59 NullPointerException , 60 IllegalArgumentException  61 { 62 return super.add((JoinPointRequest)eventRequest); 63 } 64 65 66 67 68 69 } 70 71 72 | Popular Tags |