Uses of Class
org.isis.jaut.ComException

Packages that use ComException
org.isis.jaut   
 

Uses of ComException in org.isis.jaut
 

Methods in org.isis.jaut that throw ComException
 void Variant.allocate(int vartype)
          Allocates the underlying VARIANT of a simple datatype.
static Variant Variant.create(int vartype)
          Creates a Variant of a simple datatype.
 void Variant.release()
          Clears and releases the underlying VARIANT.
 void Variant.changeType(Variant destination, int changeFlag, int vartype)
          Converts the Variant to another type.
 void Variant.clear()
          Clears the Variant and releases all owned resources other the the underlying VARIANT.
 void Variant.copy(Variant destination)
          Frees the destination Variant and makes a copy of this Variant.
 void Variant.copyInd(Variant destination)
          Frees the destination Variant and copies the value of this Variant, performing all necessary indirections for references.
 Dispatch Variant.getDispatch()
          Retrives the Dispatch object in the Variant.
 void Variant.allocateArray(int vartype, int[] lowerBounds, int[] elements)
          Allocates the underlying VARIANT of an array type.
 void Variant.allocateReference(int vartype, Variant target)
          Allocates the underlying VARIANT of a reference type.
 boolean Variant.toBoolean()
          Coerces the Varian to a Variant.VT_BOOL and returns the coerced value.
 byte Variant.toByte()
          Coerces the Varian to a Variant.VT_UI1 and returns the coerced value.
 short Variant.toShort()
          Coerces the Varian to a Variant.VT_I2 and returns the coerced value.
 int Variant.toInt()
          Coerces the Varian to a Variant.VT_I4 and returns the coerced value.
 long Variant.toLong()
          Coerces the Varian to a Variant.VT_CY and returns the coerced value.
 float Variant.toFloat()
          Coerces the Varian to a Variant.VT_R4 and returns the coerced value.
 double Variant.toDouble()
          Coerces the Varian to a Variant.VT_R8 and returns the coerced value.
 java.lang.String Variant.toString()
          Coerces the Varian to a Variant.VT_BSTR and returns the coerced value.
 java.util.Date Variant.toDate()
          Coerces the Varian to a Variant.VT_DATE and returns the coerced value.
 Dispatch Variant.toDispatch()
          Coerces the Varian to a Variant.VT_DISPATCH and returns the coerced Automation object.
 java.lang.Object Variant.toObject()
          Returns the value of the Variant in a Java object.
 int SafeArray.getLowerBound(int dim)
           
 int SafeArray.getUpperBound(int dim)
           
 void SafeArray.redimension(int lowerBound, int upperBound)
           
 short SafeArray.getVartype()
           
 void Dispatch.attach(Variant target)
          Sets the interface pointer of the Dispatch object to the interface pointer stored in the Variant.
 void Dispatch.changeInterface(java.lang.String iID)
          Changes the embedded interface pointer to another interface pointer on the same Automation object.
 Dispatch Dispatch.queryInterface(java.lang.String iID)
          Returns a new Dispatch object with another interface pointer to the same Automation object.
 void Dispatch.attachNewInstance(java.lang.String progID, int context)
          Creates an Automation object of a given program ID, and attaches this Dispatch object to it.
static Dispatch Dispatch.createInstance(java.lang.String progID, int context)
          Creates an Automation object of a given program ID and returns the new Dispatch object.
 void Dispatch.attachActiveObject(java.lang.String progID)
          Sets the interface pointer of the Dispatch object to a running object.
 java.lang.Object Dispatch.invoke(java.lang.String dispName, int dispFlags, java.lang.Object[] arguments, int[] namedArgDispIDs)
          Invokes a method, or retrives a property of an Automation object.
protected static void Apartment.coInitialize(int coInit)
          Initialize the COM library for the calling Thread.
 

Constructors in org.isis.jaut that throw ComException
Dispatch(Variant target)
          Creates a Dispatch object from a Variant.