/* ** GENEREATED FILE - DO NOT MODIFY ** */
package com.wilutions.mslib.outlook.impl;
import com.wilutions.com.*;
@SuppressWarnings("all")
@CoClass(guid="{C091A9F1-A463-DB41-5DAE-69E7A5F7FCBC}")
public class _OrderFieldsImpl extends Dispatch implements com.wilutions.mslib.outlook._OrderFields {
@DeclDISPID(61440) public com.wilutions.mslib.outlook._Application getApplication() throws ComException {
final Object obj = this._dispatchCall(61440,"Application", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return Dispatch.as(obj, com.wilutions.mslib.outlook.impl._ApplicationImpl.class);
}
@DeclDISPID(61450) public com.wilutions.mslib.outlook.OlObjectClass getClass_() throws ComException {
final Object obj = this._dispatchCall(61450,"Class", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return com.wilutions.mslib.outlook.OlObjectClass.valueOf((Integer)obj);
}
@DeclDISPID(61451) public com.wilutions.mslib.outlook._NameSpace getSession() throws ComException {
final Object obj = this._dispatchCall(61451,"Session", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return Dispatch.as(obj, com.wilutions.mslib.outlook.impl._NameSpaceImpl.class);
}
@DeclDISPID(61441) public IDispatch getParent() throws ComException {
final Object obj = this._dispatchCall(61441,"Parent", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (IDispatch)obj;
}
@DeclDISPID(80) public Integer getCount() throws ComException {
final Object obj = this._dispatchCall(80,"Count", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(81) public com.wilutions.mslib.outlook._OrderField Item(final Object Index) throws ComException {
assert(Index != null);
final Object obj = this._dispatchCall(81,"Item", DISPATCH_METHOD,null,Index);
if (obj == null) return null;
return Dispatch.as(obj, com.wilutions.mslib.outlook.impl._OrderFieldImpl.class);
}
@DeclDISPID(95) public com.wilutions.mslib.outlook.OrderField Add(final String PropertyName, final Object IsDescending) throws ComException {
assert(PropertyName != null);
assert(IsDescending != null);
final Object obj = this._dispatchCall(95,"Add", DISPATCH_METHOD,null,PropertyName,Variant.param(IsDescending));
if (obj == null) return null;
final Dispatch disp = (Dispatch)obj;
return disp.as(com.wilutions.mslib.outlook.OrderField.class);
}
@DeclDISPID(82) public void Remove(final Object Index) throws ComException {
assert(Index != null);
this._dispatchCall(82,"Remove", DISPATCH_METHOD,null,Index);
}
@DeclDISPID(64343) public void RemoveAll() throws ComException {
this._dispatchCall(64343,"RemoveAll", DISPATCH_METHOD,null);
}
@DeclDISPID(64342) public com.wilutions.mslib.outlook.OrderField Insert(final String PropertyName, final Object Index, final Object IsDescending) throws ComException {
assert(PropertyName != null);
assert(Index != null);
assert(IsDescending != null);
final Object obj = this._dispatchCall(64342,"Insert", DISPATCH_METHOD,null,PropertyName,Index,Variant.param(IsDescending));
if (obj == null) return null;
final Dispatch disp = (Dispatch)obj;
return disp.as(com.wilutions.mslib.outlook.OrderField.class);
}
public _OrderFieldsImpl(String progId) throws ComException {
super(progId, "{0006309A-0000-0000-C000-000000000046}");
}
protected _OrderFieldsImpl(long ndisp) {
super(ndisp);
}
public String toString() {
return "[_OrderFieldsImpl" + super.toString() + "]";
}
}