int lineY = y + listField.getRowHeight() / 3;
graphics.drawLine( PADDING, lineY, width - PADDING, lineY );
break;
case SelectAsyncFunction.POPUP_ITEM_TYPE_GROUP:
graphics.setColor( Color.GRAY );
font = font.derive( Font.BOLD );
graphics.setFont( font );
graphics.drawText( text, PADDING, y, DrawStyle.ELLIPSIS, width - PADDING ); // no fudge added to y coordinate
break;
case SelectAsyncFunction.POPUP_ITEM_TYPE_OPTION:
boolean enabled = listItem.isEnabled();