/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.uccollaborationlib; import com.wilutions.com.*; /** * VideoViewInformationDictionary. * VideoViewInformationDictionary Class */ @CoClass(guid="{4C7D404C-E8A6-416C-8F5F-B5B95F634B47}") public class VideoViewInformationDictionary extends Dispatch implements IVideoViewInformationDictionary { 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 VideoViewInformationType _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 VideoViewInformationType[] getKeys() throws ComException { final Object obj = this._dispatchCall(1610743810,"Keys", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (VideoViewInformationType[])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 VideoViewInformationType _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 VideoViewInformationType 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 VideoViewInformationType.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 VideoViewInformationType _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 VideoViewInformationDictionary() throws ComException { super("{4C7D404C-E8A6-416C-8F5F-B5B95F634B47}", "{B00F2520-029C-47D0-B4E8-8FBEF47CAA7E}"); } protected VideoViewInformationDictionary(long ndisp) { super(ndisp); } public String toString() { return "[VideoViewInformationDictionary" + super.toString() + "]"; } }