/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.uccollaborationlib; import com.wilutions.com.*; /** * ConversationWindowInformationDictionary. * ConversationWindowInformationDictionary Class */ @CoClass(guid="{360C1678-114E-42C0-A8FF-EA8BA10CA2D8}") public class ConversationWindowInformationDictionary extends Dispatch implements IConversationWindowInformationDictionary { static boolean __typelib__loaded = __TypeLib.load(); @DeclDISPID(1610743808) public Integer getCount() throws ComException { final Object obj = this._dispatchCall(1610743808,"Count", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(0) public Object getItem(final ConversationWindowInformationType _key) throws ComException { assert(_key != null); final Object obj = this._dispatchCall(0,"Item", DISPATCH_PROPERTYGET,null,_key.value); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743810) public ConversationWindowInformationType[] getKeys() throws ComException { final Object obj = this._dispatchCall(1610743810,"Keys", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (ConversationWindowInformationType[])obj; } @DeclDISPID(1610743811) public Object[] getValues() throws ComException { final Object obj = this._dispatchCall(1610743811,"Values", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Object[])obj; } @DeclDISPID(1610743812) public Boolean TryGetValue(final ConversationWindowInformationType _key, final ByRef<Object> _itemValue) throws ComException { assert(_key != null); assert(_itemValue != null); final Object obj = this._dispatchCall(1610743812,"TryGetValue", DISPATCH_METHOD,null,_key.value,_itemValue); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743813) public ConversationWindowInformationType GetKeyAt(final Integer _index) throws ComException { assert(_index != null); final Object obj = this._dispatchCall(1610743813,"GetKeyAt", DISPATCH_METHOD,null,_index); if (obj == null) return null; return ConversationWindowInformationType.valueOf((Integer)obj); } @DeclDISPID(1610743814) public Object GetValueAt(final Integer _index) throws ComException { assert(_index != null); final Object obj = this._dispatchCall(1610743814,"GetValueAt", DISPATCH_METHOD,null,_index); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743815) public Boolean ContainsKey(final ConversationWindowInformationType _key) throws ComException { assert(_key != null); final Object obj = this._dispatchCall(1610743815,"ContainsKey", DISPATCH_METHOD,null,_key.value); if (obj == null) return null; return (Boolean)obj; } public ConversationWindowInformationDictionary() throws ComException { super("{360C1678-114E-42C0-A8FF-EA8BA10CA2D8}", "{109D32CE-E09F-46F5-9ECB-01E1D273B7DA}"); } protected ConversationWindowInformationDictionary(long ndisp) { super(ndisp); } public String toString() { return "[ConversationWindowInformationDictionary" + super.toString() + "]"; } }