case Component.XTYPE_XCOMBOBOX :
XComboBox xComboBox = (XComboBox) UnoRuntime.queryInterface(XComboBox.class, compObject);
if (listener instanceof ActionListener)
{
xComboBox.addActionListener((XActionListener) listener);
}
else if (listener instanceof ItemListener)
{
xComboBox.addItemListener((XItemListener) listener);
}