|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use JIException | |
|---|---|
| org.jinterop.dcom.core | Defines the classes and data structures required to work with j-Interop. |
| org.jinterop.dcom.impls | Defines factories to all external interfaces such as automation (IDispatch, ITypeInfo , IEnumVariant etc) and any other out of the box wrappers provided by j-Interop. |
| org.jinterop.dcom.impls.automation | Defines out-of-box classes for usage with COM servers supporting automation. |
| org.jinterop.dcom.test | |
| org.jinterop.winreg | Defines classes to access Windows Registry. |
| org.jinterop.winreg.smb | |
| Uses of JIException in org.jinterop.dcom.core |
|---|
| Methods in org.jinterop.dcom.core that throw JIException | |
|---|---|
void |
JIStruct.addMember(int position,
java.lang.Object member)
Adds object as member to the index specified. |
void |
JIStruct.addMember(java.lang.Object member)
Adds the object as a member of this structure. |
void |
JIUnion.addMember(java.lang.Object discriminant,
JIStruct member)
Adds a member to this Union. |
void |
JIUnion.addMember(java.lang.Object discriminant,
java.lang.Object member)
Adds a member to this Union. |
void |
JIComObjectImplWrapper.addRef()
|
void |
IJIComObject.addRef()
Increases the reference count on the COM server by 5 (currently hard coded). |
static java.lang.String |
JIFrameworkHelper.attachEventHandler(IJIComObject comObject,
java.lang.String sourceUUID,
IJIComObject eventListener)
|
java.lang.Object[] |
JIComObjectImplWrapper.call(JICallBuilder obj)
|
java.lang.Object[] |
IJIComObject.call(JICallBuilder obj)
Executes a method call on the actual COM object represented by this interface. |
java.lang.Object[] |
JIComObjectImplWrapper.call(JICallBuilder obj,
int timeout)
|
java.lang.Object[] |
IJIComObject.call(JICallBuilder obj,
int timeout)
Refer IJIComObject.call(JICallBuilder) for details on this method. |
IJIComObject |
JIComServer.createInstance()
Returns an IJIComObject representing the COM Server. |
static void |
JISession.destroySession(JISession session)
Used to destroy the session, this release all references of the COM server and it's interfaces. |
static void |
JIFrameworkHelper.detachEventHandler(IJIComObject comObject,
java.lang.String identifier)
|
JIClsid |
JIProgId.getCorrespondingCLSID()
Returns the CLSID for this ProgId. |
java.lang.Object |
JIVariant.getObject()
Returns the contained object. |
JIArray |
JIVariant.getObjectAsArray()
Retrieves the contained object as JIArray. |
boolean |
JIVariant.getObjectAsBoolean()
Retrieves the contained object as boolean. |
char |
JIVariant.getObjectAsChar()
Retrieves the contained object as char. |
IJIComObject |
JIVariant.getObjectAsComObject()
Retrieves the contained object as IJIComObject. |
java.util.Date |
JIVariant.getObjectAsDate()
Retrieves the contained object as java.util.Date. |
double |
JIVariant.getObjectAsDouble()
Retrieves the contained object as double. |
float |
JIVariant.getObjectAsFloat()
Retrieves the contained object as float. |
int |
JIVariant.getObjectAsInt()
Retrieves the contained object as int. |
long |
JIVariant.getObjectAsLong()
Retrieves the contained object as long, used when the expected type is VT_I8. |
int |
JIVariant.getObjectAsSCODE()
Retrieves the contained objects errorCode. |
short |
JIVariant.getObjectAsShort()
Retrieves the contained object as short. |
JIString |
JIVariant.getObjectAsString()
Retrieves the contained object as JIString. |
java.lang.String |
JIVariant.getObjectAsString2()
Retrieves the contained object as String. |
IJIUnsigned |
JIVariant.getObjectAsUnsigned()
Retrieves the contained object as unsigned number. |
JIVariant |
JIVariant.getObjectAsVariant()
Retrieves the contained object as JIVariant. |
int |
JIVariant.getType()
Returns the referent as integer. |
static IJIComObject |
JIFrameworkHelper.instantiateComObject(JISession session,
byte[] rawBytes,
java.lang.String ipAddress)
Returns an Interface Pointer representation from raw bytes. |
static IJIComObject |
JIFrameworkHelper.instantiateComObject(JISession session,
IJIComObject comObject)
Typically used in the Man-In-The-Middle scenario, where one j-Interop system interacts with another over the wire. |
static IJIComObject |
JIFrameworkHelper.instantiateLocalComObject(JISession session,
JILocalCoClass javaComponent)
Returns an Interface Pointer representation for the Java Component |
boolean |
JIVariant.isArray()
|
boolean |
JIVariant.isByRefFlagSet()
|
IJIComObject |
JIComObjectImplWrapper.queryInterface(java.lang.String iid)
|
IJIComObject |
IJIComObject.queryInterface(java.lang.String iid)
Retrieve interface references based on iid. |
void |
JIComObjectImplWrapper.release()
|
void |
IJIComObject.release()
Decreases the reference count on the COM server by 5 (currently hard coded). |
| Constructors in org.jinterop.dcom.core that throw JIException | |
|---|---|
JIComServer(JIClsid clsid,
JISession session)
based constructor with the host machine for COM server being LOCALHOST. |
|
JIComServer(JIClsid clsid,
java.lang.String address,
JISession session)
Refer JIComServer.JIComServer(JIClsid, JISession) for details. |
|
JIComServer(JIProgId progId,
JISession session)
JIProgId based constructor with the host machine for COM server being LOCALHOST. |
|
JIComServer(JIProgId progId,
java.lang.String address,
JISession session)
Refer JIComServer.JIComServer(JIProgId, JISession) for details. |
|
| Uses of JIException in org.jinterop.dcom.impls |
|---|
| Methods in org.jinterop.dcom.impls that throw JIException | |
|---|---|
static java.lang.String |
JIObjectFactory.attachEventHandler(IJIComObject comObject,
java.lang.String sourceUUID,
IJIComObject eventListener)
Attaches an event handler to comObject for the source event interface of COM , identified by the
sourceUUID. |
static IJIComObject |
JIObjectFactory.buildObject(JISession session,
byte[] rawBytes)
Returns a COM Object from raw bytes. |
static IJIComObject |
JIObjectFactory.buildObject(JISession session,
byte[] rawBytes,
java.lang.String ipAddress)
Returns a COM Object from raw bytes. |
static IJIComObject |
JIObjectFactory.buildObject(JISession session,
JILocalCoClass javaComponent)
Returns a local COM Object representation for the Java component. |
static void |
JIObjectFactory.detachEventHandler(IJIComObject comObject,
java.lang.String identifier)
Detaches the event handler identified by identifier and associated with this comObject. |
static IJIComObject |
JIObjectFactory.narrowObject(IJIComObject comObject)
Narrows the comObject into its right type based on it's IID. |
static IJIComObject |
JIObjectFactory.narrowObject(JISession session,
IJIComObject comObject)
Typically used in the Man-In-The-Middle scenario. |
| Uses of JIException in org.jinterop.dcom.impls.automation |
|---|
| Subclasses of JIException in org.jinterop.dcom.impls.automation | |
|---|---|
class |
JIAutomationException
Class for signifying Automation related exceptions. |
| Methods in org.jinterop.dcom.impls.automation that throw JIException | |
|---|---|
void |
IJIDispatch.callMethod(int dispId)
Performs a method call for the method identified by the dispId parameter. |
void |
IJIDispatch.callMethod(int dispId,
java.lang.Object[] inparams)
Performs a method call for the method identified by the dispId parameter. |
void |
IJIDispatch.callMethod(int dispId,
java.lang.Object[] inparams,
int[] dispIds)
Performs a method call for the method identified by the dispId parameter. |
void |
IJIDispatch.callMethod(java.lang.String name)
Performs a method call for the method identified by the name parameter. |
void |
IJIDispatch.callMethod(java.lang.String name,
java.lang.Object[] inparams)
Performs a method call for the method identified by the name parameter. |
void |
IJIDispatch.callMethod(java.lang.String name,
java.lang.Object[] inparams,
int[] dispIds)
Performs a method call for the method identified by the name parameter. |
void |
IJIDispatch.callMethod(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.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. |
IJIEnumVariant |
IJIEnumVariant.Clone()
Definition from MSDN: Creates a copy of the current state of enumeration. |
IJIComObject |
IJITypeInfo.createInstance(java.lang.String riid)
Creates a new instance of a type that describes a component object class (coclass). |
java.lang.Object[] |
IJITypeLib.findName(JIString nameBuf,
int hashValue,
short found)
Finds occurrences of a type description in a type library. |
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. |
java.lang.Object[] |
IJITypeInfo.getContainingTypeLib()
Retrieves the containing type library and the index of the type description within that type library. |
java.lang.Object[] |
IJITypeInfo.getDllEntry(int memberId,
int invKind)
Retrieves a description or specification of an entry point for a function in a DLL. |
java.lang.Object[] |
IJITypeInfo.getDocumentation(int memberId)
Retrieves the documentation string, the complete Help file name and path, and the context ID for the Help topic for a specified type description. |
java.lang.Object[] |
IJITypeLib.getDocumentation(int memberId)
Retrieves the library's documentation string, the complete Help file name and path, and the context identifier for the library Help topic in the Help file. |
FuncDesc |
IJITypeInfo.getFuncDesc(int index)
Retrieves the FuncDesc structure that contains information about a specified function. |
int |
IJIDispatch.getIDsOfNames(java.lang.String apiName)
Maps a method name to its corresponding DISPID.The result of this call is cached
for further usage and no network call is performed again for the same method name. |
int[] |
IJIDispatch.getIDsOfNames(java.lang.String[] apiName)
Maps a single method name and an optional set of it's argument names to a corresponding set of DISPIDs. |
int |
IJITypeInfo.getImplTypeFlags(int index)
Retrieves the IMPLTYPEFLAGS enumeration for one implemented interface or base interface in a type description. |
void |
IJITypeLib.getLibAttr()
Retrieves the structure that contains the library's attributes. |
JIString |
IJITypeInfo.getMops(int memberId)
Retrieves marshaling information. |
java.lang.Object[] |
IJITypeInfo.getNames(int memberId,
int maxNames)
Retrieves the variable with the specified member ID (or the name of the property or method and its parameters) that correspond to the specified function ID. |
IJITypeInfo |
IJITypeInfo.getRefTypeInfo(int hrefType)
If a type description references other type descriptions, it retrieves the referenced type descriptions. |
int |
IJITypeInfo.getRefTypeOfImplType(int index)
If a type description describes a COM class, it retrieves the type description of the implemented interface types. |
TypeAttr |
IJITypeInfo.getTypeAttr()
Retrieves a TypeAttr structure that contains the attributes of the type description. |
IJITypeInfo |
IJIDispatch.getTypeInfo(int typeInfo)
Returns an implementation of COM ITypeInfo interface based on the typeInfo. |
IJITypeInfo |
IJITypeLib.getTypeInfo(int index)
Retrieves the specified type description in the library. |
int |
IJIDispatch.getTypeInfoCount()
Definition from MSDN: Determines whether there is type information available for the dual interface. |
int |
IJITypeLib.getTypeInfoCount()
Returns the number of type descriptions in the type library. |
IJITypeInfo |
IJITypeLib.getTypeInfoOfGuid(java.lang.String uuid)
Retrieves the type description that corresponds to the specified GUID. |
int |
IJITypeLib.getTypeInfoType(int index)
Retrieves the type of a type description. |
VarDesc |
IJITypeInfo.getVarDesc(int index)
Retrieves a VARDESC structure that describes the specified variable. |
static IJIComObject |
Internal_JIAutomationFactory.narrowObject(IJIComObject comObject)
|
java.lang.Object[] |
IJIEnumVariant.next(int celt)
Definition from MSDN: Attempts to get the next celt items in the enumeration sequence. |
void |
IJIDispatch.put(int dispId,
JIVariant inparam)
Performs a propput for the method identified by the dispId. |
void |
IJIDispatch.put(int dispId,
java.lang.Object[] params)
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.put(java.lang.String name,
java.lang.Object[] params)
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(int dispId,
java.lang.Object[] params)
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. |
void |
IJIDispatch.putRef(java.lang.String name,
java.lang.Object[] params)
Performs a propput for the method identified by the name parameter. |
void |
IJIEnumVariant.reset()
Definition from MSDN: Resets the enumeration sequence to the beginning. |
void |
IJIEnumVariant.skip(int celt)
Definition from MSDN: Attempts to skip over the next celt elements in the enumeration sequence. |
| Constructors in org.jinterop.dcom.impls.automation with parameters of type JIException | |
|---|---|
JIAutomationException(JIException e)
|
|
| Uses of JIException in org.jinterop.dcom.test |
|---|
| Methods in org.jinterop.dcom.test that throw JIException | |
|---|---|
JIVariant |
DWebBrowserEvents2.BeforeNavigate2(IJIComObject dispatch,
JIVariant URL,
JIVariant Flags,
JIVariant TargetFrameName,
JIVariant PostData,
JIVariant Headers,
JIVariant Cancel)
|
void |
MSPowerPoint2.closePresentation(IJIDispatch presentation)
|
void |
MSExcel3.createWorkSheet()
|
void |
MSExcel.createWorkSheet()
|
void |
MSExcel2_Test.createWorkSheet()
|
void |
MSExcel2.createWorkSheet()
|
void |
MSExcel.createXYChart()
|
void |
MSPowerPoint2.do_Next_Action(IJIDispatch view)
|
void |
MSPowerPoint2.do_Previous_Action(IJIDispatch view)
|
void |
DWebBrowserEvents2.DocumentComplete(IJIComObject pDisp,
JIVariant URL)
|
void |
QtpComTest.envQtp()
|
void |
TestCOMServer.execute()
|
JIVariant |
DWebBrowserEvents2.FileDownload(boolean noIdeaWhat,
JIVariant Cancel)
|
void |
SampleTestServer.getConformantIntArray()
|
void |
SampleTestServer.getConformantStruct(java.lang.String[] args)
|
void |
MetrikonOPC.getOPC()
|
void |
SampleTestServer.GetSimpleArrayStruct(java.lang.String[] args)
|
void |
SampleTestServer.GetSimpleArrayStructArray(java.lang.String[] args)
|
void |
SampleTestServer.getSimpleStruct(java.lang.String[] args)
|
void |
SampleTestServer.getSimpleStructArray(java.lang.String[] args)
|
void |
SampleTestServer.GetStaticStruct(java.lang.String[] args)
|
void |
SampleTestServer.GetStruct(java.lang.String[] args)
|
void |
SampleTestServer.GetStructStruct(java.lang.String[] args)
|
void |
SampleTestServer.GetStructStructArray(java.lang.String[] args)
|
void |
SampleTestServer.getTCharArray()
|
void |
MSPowerPoint2.goto_First_Slide(IJIDispatch view)
|
void |
MSPowerPoint2.goto_Last_Slide(IJIDispatch view)
|
void |
MSPowerPoint2.goto_Numbered_Slide(IJIDispatch view,
int index)
|
void |
DWebBrowserEvents2.NavigateComplete2(IJIComObject pDisp,
JIVariant URL)
|
JIVariant |
DWebBrowserEvents2.NavigateError(IJIComObject pDisp,
JIVariant URL,
JIVariant Frame,
JIVariant StatusCode,
JIVariant Cancel)
|
JIVariant |
DWebBrowserEvents2.NewWindow2(JIVariant ppDisp,
JIVariant Cancel)
|
JIVariant |
DWebBrowserEvents2.NewWindow3(JIVariant ppDisp,
JIVariant Cancel,
int dwFlags,
JIString bstrUrlContext,
JIString bstrUrl)
|
java.lang.Object[] |
JIOPCEventSink.onEvent(int clientSubscription,
int refresh,
int lastRefresh,
int count,
JIArray eventsArray)
This method is provided by the client to handle notifications from the OPCEventSubscription for events. |
IJIDispatch |
MSPowerPoint2.openPresentation(java.lang.String fullEscapedPath)
|
void |
MSExcel2.pasteArrayToWorkSheet()
|
void |
MSExcel2_Test.pasteArrayToWorkSheet(int nRow)
|
void |
MSExcel.pasteStringToWorkSheet()
|
void |
SampleTestServer.performCallback(java.lang.String[] args)
|
void |
MSPowerPoint.performOp()
|
void |
MSWord2.performOp()
|
void |
KainTest.performOp()
|
void |
MSWMI.performOp()
|
void |
MSEnumVariant.performOp()
|
void |
MetrikonOPC.performOp()
|
void |
MSADO.performOp()
|
void |
MSWMI2.performOp()
|
void |
MSWord.performOp()
|
void |
SampleTestServer.performSquare(java.lang.String[] args)
|
void |
MSPowerPoint2.quitPowerPoint()
|
IJIDispatch |
MSPowerPoint2.runPresentation(IJIDispatch activePresentation)
|
void |
MSPowerPoint2.savePresentationAs(IJIDispatch presentation,
java.lang.String fullEscapedPath)
|
void |
SampleTestServer.setConformantIntArray()
|
void |
DWebBrowserEvents2.SetPhishingFilterStatus(int PhishingFilterStatus)
|
void |
SampleTestServer.SetSimpleArrayStructArray(java.lang.String[] args)
|
void |
SampleTestServer.SetStaticStruct(java.lang.String[] args)
|
void |
SampleTestServer.setTCharArray()
|
void |
MSExcel3.showExcel()
|
void |
MSExcel.showExcel()
|
void |
MSExcel2_Test.showExcel()
|
void |
MSExcel2.showExcel()
|
void |
MSPowerPoint.showPowerPoint()
|
void |
MSPowerPoint2.showPowerPoint()
|
void |
QtpComTest.showQtp()
|
void |
MSWord2.showWord()
|
void |
KainTest.showWord()
|
void |
MSWord.showWord()
|
void |
MSTypeLibraryBrowser2.start()
|
void |
MSTypeLibraryBrowser.start()
|
void |
MSExcel3.startExcel()
|
void |
MSExcel.startExcel()
|
void |
MSExcel2_Test.startExcel()
|
void |
MSExcel2.startExcel()
|
void |
MSPowerPoint.startPowerPoint()
|
void |
MSPowerPoint2.startPowerPoint()
|
void |
QtpComTest.startQTP()
|
void |
MSWord2.startWord()
|
void |
KainTest.startWord()
|
void |
MSWord.startWord()
|
void |
WshShell.startWScript()
|
static void |
SampleTestServerCallback.testSinkDebug(java.lang.String[] args)
|
static void |
SampleTestServerCallback.testStaticUpdateMeSink(java.lang.String[] args)
|
JIVariant |
DWebBrowserEvents2.WindowClosing(boolean IsChildWindow,
JIVariant Cancel)
|
| Constructors in org.jinterop.dcom.test that throw JIException | |
|---|---|
KainTest(java.lang.String address,
java.lang.String[] args)
|
|
MetrikonOPC(java.lang.String address,
java.lang.String[] args)
|
|
MSADO(java.lang.String address,
java.lang.String[] args)
|
|
MSEnumVariant(java.lang.String address,
java.lang.String[] args)
|
|
MSExcel(java.lang.String address,
java.lang.String[] args)
|
|
MSExcel2_Test(java.lang.String address,
java.lang.String[] args)
|
|
MSExcel2(java.lang.String address,
java.lang.String[] args)
|
|
MSExcel3(java.lang.String address,
java.lang.String[] args)
|
|
MSInternetExplorer(java.lang.String address,
java.lang.String[] args)
|
|
MSPowerPoint(java.lang.String address,
java.lang.String[] args)
|
|
MSPowerPoint2(java.lang.String address,
java.lang.String[] args)
|
|
MSTypeLibraryBrowser(java.lang.String address,
java.lang.String[] args)
|
|
MSTypeLibraryBrowser2(java.lang.String address,
java.lang.String[] args)
|
|
MSWMI(java.lang.String address,
java.lang.String[] args)
|
|
MSWMI2(java.lang.String address,
java.lang.String[] args)
|
|
MSWord(java.lang.String address,
java.lang.String[] args)
|
|
MSWord2(java.lang.String address,
java.lang.String[] args)
|
|
QtpComTest(java.lang.String address,
java.lang.String domain,
java.lang.String username,
java.lang.String password)
|
|
SampleTestServer(java.lang.String address,
java.lang.String[] args)
|
|
TestCOMServer(java.lang.String address,
java.lang.String[] args)
|
|
WshShell(java.lang.String address,
java.lang.String domain,
java.lang.String username,
java.lang.String password)
|
|
| Uses of JIException in org.jinterop.winreg |
|---|
| Methods in org.jinterop.winreg that throw JIException | |
|---|---|
void |
IJIWinReg.closeConnection()
Closes this connection, but a word of caution, it does not close any OPEN Key. |
void |
IJIWinReg.winreg_CloseKey(JIPolicyHandle handle)
Closes the key. |
JIPolicyHandle |
IJIWinReg.winreg_CreateKey(JIPolicyHandle handle,
java.lang.String subKey,
int options,
int accessMask)
Creates a new key by name subKey under the handle. |
void |
IJIWinReg.winreg_DeleteKeyOrValue(JIPolicyHandle handle,
java.lang.String valueName,
boolean isKey)
Deletes a key or value specified by valueName. |
java.lang.String[] |
IJIWinReg.winreg_EnumKey(JIPolicyHandle handle,
int index)
Returns name and class (in that order) for the key identified by index under parent handle. |
java.lang.Object[] |
IJIWinReg.winreg_EnumValue(JIPolicyHandle handle,
int index)
Returns name and type (in that order) for the value identified by index under parent handle. |
JIPolicyHandle |
IJIWinReg.winreg_OpenHKCR()
Opens the HKEY_CLASSES_ROOT key |
JIPolicyHandle |
IJIWinReg.winreg_OpenHKCU()
Opens the HKEY_CURRENT_USER key |
JIPolicyHandle |
IJIWinReg.winreg_OpenHKLM()
Opens the HKEY_LOCAL_MACHINE key |
JIPolicyHandle |
IJIWinReg.winreg_OpenHKU()
Opens the HKEY_USERS key |
JIPolicyHandle |
IJIWinReg.winreg_OpenKey(JIPolicyHandle handle,
java.lang.String key,
int accessMask)
Opens the subkey of key specified by handle. |
byte[] |
IJIWinReg.winreg_QueryValue(JIPolicyHandle handle,
int bufferSize)
Query the key for it's name. |
java.lang.Object[] |
IJIWinReg.winreg_QueryValue(JIPolicyHandle handle,
java.lang.String valueName,
int bufferSize)
Query the key-value for it's value.Please put buffer size more than the estimated expected value. |
void |
IJIWinReg.winreg_SaveFile(JIPolicyHandle handle,
java.lang.String fileName)
Saves registry entries from handle location to local fileName. |
void |
IJIWinReg.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName)
Sets an empty name-value for a REG_NONE type. |
void |
IJIWinReg.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
byte[][] data)
Sets name-value for a REG_MULTI_SZ type. |
void |
IJIWinReg.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
byte[] data,
boolean binary,
boolean expand_sz)
Sets name-value for a REG_SZ\REG_EXPAND_SZ\REG_BINARY type. |
void |
IJIWinReg.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
int data)
Sets name-value for a REG_DWORD type. |
| Uses of JIException in org.jinterop.winreg.smb |
|---|
| Methods in org.jinterop.winreg.smb that throw JIException | |
|---|---|
void |
JIWinRegStub.closeConnection()
|
void |
JIWinRegStub.winreg_CloseKey(JIPolicyHandle handle)
|
JIPolicyHandle |
JIWinRegStub.winreg_CreateKey(JIPolicyHandle handle,
java.lang.String subKey,
int options,
int accessMask)
|
void |
JIWinRegStub.winreg_DeleteKeyOrValue(JIPolicyHandle handle,
java.lang.String valueName,
boolean isKey)
|
java.lang.String[] |
JIWinRegStub.winreg_EnumKey(JIPolicyHandle handle,
int index)
|
java.lang.Object[] |
JIWinRegStub.winreg_EnumValue(JIPolicyHandle handle,
int index)
|
JIPolicyHandle |
JIWinRegStub.winreg_OpenHKCR()
|
JIPolicyHandle |
JIWinRegStub.winreg_OpenHKCU()
|
JIPolicyHandle |
JIWinRegStub.winreg_OpenHKLM()
|
JIPolicyHandle |
JIWinRegStub.winreg_OpenHKU()
|
JIPolicyHandle |
JIWinRegStub.winreg_OpenKey(JIPolicyHandle handle,
java.lang.String key,
int accessMask)
|
byte[] |
JIWinRegStub.winreg_QueryValue(JIPolicyHandle handle,
int bufferSize)
|
java.lang.Object[] |
JIWinRegStub.winreg_QueryValue(JIPolicyHandle handle,
java.lang.String valueName,
int bufferSize)
|
void |
JIWinRegStub.winreg_SaveFile(JIPolicyHandle handle,
java.lang.String fileName)
|
void |
JIWinRegStub.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName)
|
void |
JIWinRegStub.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
byte[][] data)
|
void |
JIWinRegStub.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
byte[] data,
boolean isBinary,
boolean expand_sz)
|
void |
JIWinRegStub.winreg_SetValue(JIPolicyHandle handle,
java.lang.String valueName,
int data)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||