//TODO lazily instantiate gesturehandler/arraylist so that graphicobjects arent expensive at creation?
this.inputListeners = new ArrayList<IMTInputEventListener>(3);
//Delegate input processing/gesture detection to a special handler
this.inputProcessorsSupport = new ComponentInputProcessorSupport(pApplet, this);
//Let the input processor support class listen to the component's input events
this.addInputListener(inputProcessorsSupport);
this.gestureEvtSupport = new GestureEventSupport();