/** * Just sets some command for button. * * <p>Has <b> OK </b> status if no runtime exceptions occurred */ public void _setActionCommand() { boolean result = true; oObj.setActionCommand("XButtonComand"); tRes.tested("setActionCommand()", result); }
/** !!! Can be checked only interactively !!! */ public void _removeActionListener() { boolean result = true; oObj.removeActionListener(listener); tRes.tested("removeActionListener()", result); }
/** * Just sets some text for label. * * <p>Has <b> OK </b> status if no runtime exceptions occurred */ public void _setLabel() { boolean result = true; oObj.setLabel("XButton Label"); tRes.tested("setLabel()", result); }
/** !!! Can be checked only interactively !!! */ public void _addActionListener() { boolean result = true; oObj.addActionListener(listener); tRes.tested("addActionListener()", result); }