sb.append(propertyName).append(Utils.LINE_SEPARATOR);
Variant variantProperty = automation.getProperty(automation.getIDsOfNames(new String[] {propertyName})[0]);
if(variantProperty != null && variantProperty.getType() == OLE.VT_DISPATCH) {
OleAutomation newAutomation = variantProperty.getAutomation();
dumpOleInterfaceDefinitions(sb, newAutomation, index + 1);
newAutomation.dispose();
}
dispose(variantProperty);
}
}
private Map<Short, String> oleTypeToDescriptionMap;