1 26 27 package net.sourceforge.groboutils.uicapture.v1.event; 28 29 30 31 39 public class AllowCapturePassThroughAdapter extends CaptureAdapter 40 implements IAllowCapturePassThroughListener 41 { 42 47 public boolean allowMouseWheelMoved( MouseWheelCaptureEvent ce ) 48 { 49 return true; 50 } 51 52 53 58 public boolean allowMousePressed( MousePressedCaptureEvent ce ) 59 { 60 return true; 61 } 62 63 64 69 public boolean allowMouseReleased( MouseReleasedCaptureEvent ce ) 70 { 71 return true; 72 } 73 74 75 80 public boolean allowKeyPressed( KeyPressedCaptureEvent ce ) 81 { 82 return true; 83 } 84 85 86 91 public boolean allowKeyReleased( KeyReleasedCaptureEvent ce ) 92 { 93 return true; 94 } 95 } 96 97 | Popular Tags |