/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.uccollaborationlib; import com.wilutions.com.*; /** * ConferenceSettingDictionary. * ConferenceSettingDictionary Class */ @CoClass(guid="{7F10FAB7-2A38-444C-8F43-31DDF0FE79AE}") public class ConferenceSettingDictionary extends Dispatch implements IConferenceSettingDictionary { 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 ConferenceSetting _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(0) public void setItem(final ConferenceSetting _key, final Object value2) throws ComException { assert(value2 != null); assert(_key != null); this._dispatchCall(0,"Item", DISPATCH_PROPERTYPUT,value2,_key.value); } @DeclDISPID(1610743811) public void Add(final ConferenceSetting _key, final Object _value) throws ComException { assert(_key != null); assert(_value != null); this._dispatchCall(1610743811,"Add", DISPATCH_METHOD,null,_key.value,_value); } @DeclDISPID(1610743812) public ConferenceSetting[] getKeys() throws ComException { final Object obj = this._dispatchCall(1610743812,"Keys", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (ConferenceSetting[])obj; } @DeclDISPID(1610743813) public Object[] getValues() throws ComException { final Object obj = this._dispatchCall(1610743813,"Values", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Object[])obj; } @DeclDISPID(1610743814) public Boolean TryGetValue(final ConferenceSetting _key, final ByRef<Object> _value) throws ComException { assert(_key != null); assert(_value != null); final Object obj = this._dispatchCall(1610743814,"TryGetValue", DISPATCH_METHOD,null,_key.value,_value); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743815) public ConferenceSetting GetKeyAt(final Integer _index) throws ComException { assert(_index != null); final Object obj = this._dispatchCall(1610743815,"GetKeyAt", DISPATCH_METHOD,null,_index); if (obj == null) return null; return ConferenceSetting.valueOf((Integer)obj); } @DeclDISPID(1610743816) public Object GetValueAt(final Integer _index) throws ComException { assert(_index != null); final Object obj = this._dispatchCall(1610743816,"GetValueAt", DISPATCH_METHOD,null,_index); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743817) public Boolean ContainsKey(final ConferenceSetting _key) throws ComException { assert(_key != null); final Object obj = this._dispatchCall(1610743817,"ContainsKey", DISPATCH_METHOD,null,_key.value); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743818) public void RemoveAt(final Integer _index) throws ComException { assert(_index != null); this._dispatchCall(1610743818,"RemoveAt", DISPATCH_METHOD,null,_index); } @DeclDISPID(1610743819) public void Remove(final ConferenceSetting _key) throws ComException { assert(_key != null); this._dispatchCall(1610743819,"Remove", DISPATCH_METHOD,null,_key.value); } @DeclDISPID(1610743820) public void RemoveAll() throws ComException { this._dispatchCall(1610743820,"RemoveAll", DISPATCH_METHOD,null); } public ConferenceSettingDictionary() throws ComException { super("{7F10FAB7-2A38-444C-8F43-31DDF0FE79AE}", "{BD891697-C93E-4A0B-9B6C-004BD81B6EE8}"); } protected ConferenceSettingDictionary(long ndisp) { super(ndisp); } public String toString() { return "[ConferenceSettingDictionary" + super.toString() + "]"; } }