/* ** GENEREATED FILE - DO NOT MODIFY ** */
package com.wilutions.mslib.outlook.impl;
import com.wilutions.com.*;
@SuppressWarnings("all")
@CoClass(guid="{C091A996-A463-DB41-5DAE-69E7A5F7FCBC}")
public class _TimeZoneImpl extends Dispatch implements com.wilutions.mslib.outlook._TimeZone {
@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(8450) public String getName() throws ComException {
final Object obj = this._dispatchCall(8450,"Name", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(64555) public String getDaylightDesignation() throws ComException {
final Object obj = this._dispatchCall(64555,"DaylightDesignation", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(64556) public String getStandardDesignation() throws ComException {
final Object obj = this._dispatchCall(64556,"StandardDesignation", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
@DeclDISPID(64545) public Integer getBias() throws ComException {
final Object obj = this._dispatchCall(64545,"Bias", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(64546) public Integer getStandardBias() throws ComException {
final Object obj = this._dispatchCall(64546,"StandardBias", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(64547) public Integer getDaylightBias() throws ComException {
final Object obj = this._dispatchCall(64547,"DaylightBias", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (Integer)obj;
}
@DeclDISPID(64548) public java.util.Date getStandardDate() throws ComException {
final Object obj = this._dispatchCall(64548,"StandardDate", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (java.util.Date)obj;
}
@DeclDISPID(64549) public java.util.Date getDaylightDate() throws ComException {
final Object obj = this._dispatchCall(64549,"DaylightDate", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (java.util.Date)obj;
}
@DeclDISPID(64562) public String getID() throws ComException {
final Object obj = this._dispatchCall(64562,"ID", DISPATCH_PROPERTYGET,null);
if (obj == null) return null;
return (String)obj;
}
public _TimeZoneImpl(String progId) throws ComException {
super(progId, "{000630FD-0000-0000-C000-000000000046}");
}
protected _TimeZoneImpl(long ndisp) {
super(ndisp);
}
public String toString() {
return "[_TimeZoneImpl" + super.toString() + "]";
}
}