ItsNatComponentManager componentMgr = itsNatDoc.getItsNatComponentManager();
this.addButton = (ItsNatHTMLButton)componentMgr.findItsNatComponentById(addButtonId);
addButton.addEventListener("click",this);
this.removeButton = (ItsNatHTMLButton)componentMgr.findItsNatComponentById(removeButtonId);
removeButton.addEventListener("click",this);
this.joystickModeCheck = (ItsNatHTMLInputCheckBox)componentMgr.findItsNatComponentById(joystickCheckboxId);
joystickModeCheck.addEventListener("click",this);
joystickModeCheck.setSelected(itsNatDoc.isJoystickMode());