/* ** GENEREATED FILE - DO NOT MODIFY ** */ package com.wilutions.mslib.uccollaborationlib; import com.wilutions.com.*; /** * AsynchronousOperation. * AsynchronousOperation Class */ @CoClass(guid="{E6A9D57E-838C-43D1-9F12-E47C844531E0}") public class AsynchronousOperation extends Dispatch implements IAsynchronousOperation { static boolean __typelib__loaded = __TypeLib.load(); @DeclDISPID(1610743808) public Object getAsyncState() throws ComException { final Object obj = this._dispatchCall(1610743808,"AsyncState", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Object)obj; } @DeclDISPID(1610743809) public Integer getStatusCode() throws ComException { final Object obj = this._dispatchCall(1610743809,"StatusCode", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(1610743810) public Boolean getIsCompleted() throws ComException { final Object obj = this._dispatchCall(1610743810,"IsCompleted", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743811) public Boolean getIsSucceeded() throws ComException { final Object obj = this._dispatchCall(1610743811,"IsSucceeded", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743812) public Boolean getIsCancelable() throws ComException { final Object obj = this._dispatchCall(1610743812,"IsCancelable", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Boolean)obj; } @DeclDISPID(1610743813) public Integer getDiagnosticCode() throws ComException { final Object obj = this._dispatchCall(1610743813,"DiagnosticCode", DISPATCH_PROPERTYGET,null); if (obj == null) return null; return (Integer)obj; } @DeclDISPID(1610743814) public void CancelOperation() throws ComException { this._dispatchCall(1610743814,"CancelOperation", DISPATCH_METHOD,null); } public AsynchronousOperation() throws ComException { super("{E6A9D57E-838C-43D1-9F12-E47C844531E0}", "{F7EE956B-A713-48D3-AFEF-0A28F37740B3}"); } protected AsynchronousOperation(long ndisp) { super(ndisp); } public String toString() { return "[AsynchronousOperation" + super.toString() + "]"; } }