747576777879808182
/** * Just calls the method. */ public void _getFont() { XFont font = oObj.getFont(); log.println("getFont(): " + font); tRes.tested("getFont()", true); }
737475767778798081
/** * Just calls the method. */ public boolean _getFont() { XFont font = oObj.getFont(); log.println("getFont(): " + font); return true; }
676869707172737475
666768697071727374
/** * Just calls the method. * @return */ public boolean _getFont() { XFont font = oObj.getFont(); System.out.println("getFont(): " + font); return true; }
707172737475767778
717273747576777879
787980818283848586
798081828384858687