Uses of Class
org.jinterop.dcom.core.JIVariant

Packages that use JIVariant
org.jinterop.dcom.core Core library classes and Data structures. 
org.jinterop.dcom.win32 Defines classes for automation
 

Uses of JIVariant in org.jinterop.dcom.core
 

Fields in org.jinterop.dcom.core declared as JIVariant
static JIVariant JIVariant.EMPTY
          EMPTY VARIANT
static JIVariant JIVariant.EMPTY_BYREF
          EMPTY BYREF VARIANT
static JIVariant JIVariant.NULL
          NULL VARIANT
static JIVariant JIVariant.OPTIONAL_PARAM
          OPTIONAL PARAM.
 JIVariant JIString.Variant
          Represents JIVariant for this JIString, it is valid only if the JIString is a BSTR(JIFlags.FLAG_REPRESENTATION_STRING_BSTR) type.
 JIVariant JIString.VariantByRef
          Represents JIVariant(byRef = true) for this JIString, it is valid only if the JIString is a BSTR(JIFlags.FLAG_REPRESENTATION_STRING_BSTR) type.
 

Methods in org.jinterop.dcom.core that return JIVariant
 JIVariant JIVariant.getObjectAsVariant()
          Retrieves the contained object as JIVariant.
 JIVariant JICallObject.getResultAsVariantAt(int index)
          Returns the value as JIVariant at the index from the result list.
 

Methods in org.jinterop.dcom.core with parameters of type JIVariant
 void JICallObject.addInParamAsVariant(JIVariant value, int FLAGS)
          Add IN parameter as JIVariant at the end of the Parameter list.
 void JICallObject.insertInParamAsVariantAt(int index, JIVariant value, int FLAGS)
          Add IN parameter as JIVariant at the specified index in the Parameter list.
 

Constructors in org.jinterop.dcom.core with parameters of type JIVariant
JIVariant(JIVariant variant)
          Setting up a VARIANT with a VARIANT.
 

Uses of JIVariant in org.jinterop.dcom.win32
 

Methods in org.jinterop.dcom.win32 that return JIVariant
 JIVariant IJIDispatch.callMethodA(int dispId)
          Performs a method call for the method identified by the dispId parameter.
 JIVariant[] IJIDispatch.callMethodA(int dispId, java.lang.Object[] inparams)
          Performs a method call for the method identified by the dispId parameter.
 JIVariant[] IJIDispatch.callMethodA(int dispId, java.lang.Object[] inparams, int[] dispIds)
          Performs a method call for the method identified by the dispId parameter.
 JIVariant IJIDispatch.callMethodA(java.lang.String name)
          Performs a method call for the method identified by the name parameter.
 JIVariant[] IJIDispatch.callMethodA(java.lang.String name, java.lang.Object[] inparams)
          Performs a method call for the method identified by the name parameter.
 JIVariant[] IJIDispatch.callMethodA(java.lang.String name, java.lang.Object[] inparams, int[] dispIds)
          Performs a method call for the method identified by the name parameter.
 JIVariant[] IJIDispatch.callMethodA(java.lang.String name, java.lang.Object[] inparams, java.lang.String[] paramNames)
          Performs a method call for the method identified by the name parameter.
 JIVariant IJIDispatch.get(int dispId)
          Performs a propget for the method identified by the dispId.
 JIVariant[] IJIDispatch.get(int dispId, java.lang.Object[] inparams)
          Performs a propget for the method identified by the dispId parameter.
 JIVariant IJIDispatch.get(java.lang.String name)
          Performs a propget for the method identified by the name parameter.
 JIVariant[] IJIDispatch.get(java.lang.String name, java.lang.Object[] inparams)
          Performs a propget for the method identified by the name parameter.
 

Methods in org.jinterop.dcom.win32 with parameters of type JIVariant
 void IJIDispatch.put(int dispId, JIVariant inparam)
          Performs a propput for the method identified by the dispId.
 void IJIDispatch.put(java.lang.String name, JIVariant inparam)
          Performs a propput for the method identified by the name parameter.
 void IJIDispatch.putRef(int dispId, JIVariant inparam)
          Performs a propputref for the method identified by the dispId.
 void IJIDispatch.putRef(java.lang.String name, JIVariant inparam)
          Performs a propput for the method identified by the name parameter.