parent
3cdca51a3e
commit
f34a1b290e
@ -0,0 +1,15 @@ |
||||
FROM moxm/java:1.8-full |
||||
|
||||
RUN mkdir -p /dlp-entrustment |
||||
|
||||
WORKDIR /dlp-entrustment |
||||
|
||||
ARG JAR_FILE=target/dlp-entrustment.jar |
||||
|
||||
COPY ${JAR_FILE} app.jar |
||||
|
||||
EXPOSE 5203 |
||||
|
||||
ENV TZ=Asia/Shanghai JAVA_OPTS="-Xms128m -Xmx256m -Djava.security.egd=file:/dev/./urandom" |
||||
|
||||
CMD sleep 60; java -jar app.jar $JAVA_OPTS |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,140 @@ |
||||
# Overview |
||||
|
||||
JACOB is built on windows machines using ANT, most commonly from inside of Eclipse. The main steps for getting a working Jacob build are: |
||||
|
||||
1. Check out the source code or unpack the source zip file from sourceforge |
||||
2. Install the Development Environment |
||||
3. Configure the build by creating a _compilation_tools.properties_ file. |
||||
4. Run Eclipse and load the project into eclipse |
||||
5. Open the build.xml file in Eclipse and run the default ant target |
||||
|
||||
# Repository Organization |
||||
|
||||
Unpack the source archive zip file or check the files out of CVS into d:\jacob or some other familiar place. Source Java and JNI files are located in separate packages from the unit tests and the samples. |
||||
|
||||
||| |
||||
|-|-| |
||||
| docs | documentation |
||||
| jni | c++ code |
||||
| lib | libraries needed to compile unit tests |
||||
| release | a directory built by the ant script where jacob is constructed |
||||
| samples | sample programs |
||||
| src | Jacob Java source files |
||||
| unittest | JUnit 4.12 unit test programs. Run from the test target in build.xml |
||||
| vstudio | some out of date VC++ project files |
||||
| bulid.xml | the ant build script. It can be run from inside Eclipse |
||||
|
||||
The Servlet examples that required j2ee libraries to compile have temporarily been removed. |
||||
|
||||
# Development Environment |
||||
|
||||
The simplest build environment includes MS Visual Studio 16.0 (Studio 2019), Eclipse 2020.09 with the C/C++ module and JDK 1.8. In that situation, you would just create the _compilation_tools.properties_ using the example at the top of build.xml as a template. |
||||
|
||||
* Microsoft Visual Studio 2019 Community Edition. Installs to C:\ProgramFiles (X86) |
||||
* MSVC |
||||
* Windows 10 SDK |
||||
* C++ MFC CLI Modules - don't know which o fthese are needed |
||||
* Eclipse from www.eclipse.org as the Java IDE. |
||||
* Eclipse C/C++ plugin can be used for C coding in place of VC++ IDE. |
||||
* Java JDK 1.8 , latest available |
||||
|
||||
||||||| |
||||
|--- |--- |--- |--- |--- |--- | |
||||
|Release |C Version |Java Version|ANT Version |Eclipse Version Used|generated DLLs| |
||||
|up to 1.6|VC 98 (6.0) |? |MAKE |? |32 bit| |
||||
|1.7 |VC 98 (6.0) |1.4 (48) |1.? |? |32 bit| |
||||
|1.8 |VC 98 (6.0) |1.4 (48) |1.? |? |32 bit| |
||||
|1.9 |VC 98 (6.0) |1.4 (48) |1.? |? |32 bit| |
||||
|1.10 |VC 98 (6.0) |1.4 (48) |1.? |3.?? |32 bit| |
||||
|1.11 |VC 98 (6.0) & 2003 64bit libs|1.4.? (48) |1.6.? |3.2.1 |32 and 64 bit| |
||||
|1.12 |VC 98 (6.0) & 2003 64bit libs|1.4.2 (48) |1.6.5 |3.2.2 |32 and 64 bit| |
||||
|1.13 |VC 2005 (8) |1.4.2 (48) |1.7.0 |3.3 |32 and 64 bit| |
||||
|1.14 |VC 2005 (8) |1.5.0 (49) |1.7.0 |3.3 |32 and 64 bit| |
||||
|1.15 |VC 2005 (8) |1.5.0 (49) |1.7.0 |3.4 |32 and 64 bit| |
||||
|1.17 |VC 2005 (8) |1.5.0 (49) |1.8.4 Eclipse Embedded|4.3 |32 and 64 bit| |
||||
|1.18 |VS 2013 (12) Windows SDK 7.1A|1.6.0 (50) |1.8.4 Eclipse Embedded|4.3 |32 and 64 bit| |
||||
|1.19 |VS 2013 (12) Windows SDK 7.1A|1.8.0 (52) |1.10.1 Eclipse Provided|4.7 |32 and 64 bit| |
||||
|1.20 |VS 2019 (16) Windows SDK 10 |1.8.0 (52) |1.10.8 Eclipse Provided|2020 09 |32 and 64 bit| |
||||
|
||||
Microsoft Visual Studio 2019 supports 64 bit builds. so no additional tools are required. |
||||
|
||||
# Build Process |
||||
|
||||
The build process is based on ANT. You can run ANT from inside of eclipse or from the command line. Running from inside eclipse means you don't have any installation, pathing or configuration to do. You can just open the xml, select the target in the "Outline" pane, right mouse and then "run as ant" on the selected target.The ant process is driven off of a configuration file named `compilation_tools.properties` that describes the locations of the JDK and Microsoft C++ tools. The `build.xml` file in the root directory contains examples of the contents of this file. There are two main ant targets. |
||||
|
||||
* **ant default** executes the following steps when using the default target. |
||||
* Build the Java code |
||||
* Build the jni code |
||||
* create the dll |
||||
* create jar file |
||||
* **ant PackageRelease** runs the above listed steps and then |
||||
* builds the javadoc |
||||
* builds a source zip |
||||
* builds a binary zip with the javadoc |
||||
* **test** runs all the tests |
||||
* One of the Excel unit tests is hard coded against Office 2019 32 bit. |
||||
|
||||
# Eclipse Java IDE |
||||
|
||||
You can open the jacob-project in Eclipse. |
||||
|
||||
1. Open Eclipse |
||||
2. File-->New-->Other... |
||||
3. Java --> Java Project form Existing Ant Buildfile |
||||
4. Click "next" to go to "Create a Java Project from an Ant Buildfile" |
||||
5. Browse to and select build.xml in the project directory |
||||
6. Select any of the javac tasks. This wall cause that one source directory to be added as a eclipse source directory. |
||||
|
||||
Eclipse users have to do some minor tweaks to their project if they want to use the integrated build process. This is because the unit tests are files located in the "unittest" directory while the project source files themselves are in "src" the root directory. By default, eclipse will add the entire project as source. This messes up the package naming. In addition, the build directory should be set to be the same place the ANT build puts the compiled java classes. A couple small tweaks to the build path fix these problems: |
||||
|
||||
1. Open up the project properties and go to the "Java Build Path" properties panel. |
||||
2. Remove the root of the project from the build path if it is there |
||||
3. Add / verify the following folders are in the build path. Add them with "link source..." if they are missing `samples`, `src` and `unittest` to the build path in the Source tab. |
||||
4. Add junit as a library "Add Library...Junit...Junit 4" |
||||
5. Exclude *.txt from each of the newly added folders. |
||||
6. Set the default build output directory to `jacob-project/release/java` |
||||
7. Open "Windows-->Show View-->Project Explorer" |
||||
|
||||
## Troubleshooting Build Problems |
||||
|
||||
* Symptom: Build Failed can't find javac compiler. JAVA_HOME does not point to the JDK Problem: |
||||
The java library is pointed at a jre insted of the jdk. Update Project..Properties..Java Build Path to point at the JDK |
||||
* Symptom: The jar is built but no dlls were compiled. |
||||
Problem: compilation_tools.properties does not have the correct location for the Microsoft tools. |
||||
* Sympton: Can't find jni.h or can't find C++ compiler |
||||
Problem: compilation_tools.properties configured incorrectly. Either paths are wrong or the separator is wrong. It requires two backslashes for a separator. |
||||
* Symptom: Ant fails with the message `Could not create task or type of type: junit.`. |
||||
Problem: junit.jar must be copied from this project to the $ANT_HOME/lib directory. |
||||
|
||||
# Compilation_tools.properties |
||||
See build.xml for a sample |
||||
# Running Samples and Tests |
||||
|
||||
Samples and JUnit test programs can be found in the source jar or in sourceforge/git. The programs can be run from a bat file or from inside the Eclipse IDE. The java library path variable must be set to include the directory the jacob.dll is in. The simplest way to do that is to add it as a command line option. The following assume that your jacob development area is located in c:\dev\jacob: |
||||
|
||||
``` |
||||
-Djava.library.path=c:/dev/jacob/release/x86 |
||||
-Dcom.jacob.autogc=false |
||||
-Dcom.jacob.debug=false |
||||
-Xcheck:jni |
||||
``` |
||||
|
||||
JUnit test programs can be individually run from inside eclipse or en-masse via the `ant test` target. |
||||
|
||||
# Git Bash environment configuration |
||||
|
||||
Example `setenv.sh` environment configuration for windows machine for a gitbash terminal as of 2020/09 |
||||
|
||||
``` |
||||
JAVA_HOME="/c/Program Files/Amazon Corretto/jdk1.8.0_265" |
||||
ANT_HOME="/c/Users/joe/.p2/pool/plugins/org.apache.ant_1.10.8.v20200515-1239" |
||||
PATH=$ANT_HOME/bin:$JAVA_HOME/bin:$PATH |
||||
export PATH |
||||
export ANT_HOME |
||||
export JAVA_HOME |
||||
``` |
||||
|
||||
*** |
||||
|
||||
Last Modified 09/2020 1.19 |
||||
Converted from HTML to md 9/2020 |
||||
@ -0,0 +1,13 @@ |
||||
# COM Object Lifetime in JACOB |
||||
|
||||
## introduction |
||||
|
||||
JACOB Version 1.7 implements a new [Threading Model](JacobThreading.html) that is more compatible with COM apartments. There is also an incompatibility between the Java object lifetime model and that of COM objects. COM Objects live and die by their reference count, whereas Java objects are collected by the Garbage Collector (GC) based on algortihms that are hidden from the user. |
||||
|
||||
## COM Object Lifetime in JACOB Prior to Version 1.7 |
||||
|
||||
In version 1.6 and earlier, JACOB objects which wrapped COM objects had `finalize()` methods that would call a native `release` method which would call a COM `Release`.This has many problems. For one thing, the GC may take a long time to kick in and resource consumption may grow. However, the more problematic issue is that finalizers are called from a separate thread, and, as was discussed in the [Threading Model](JacobThreading.html) document, this can result in COM errors if the object is running in an STA. Even if the object is running in an MTA, the finalizer may decide to run after we have terminated the thread that holds the component, in which case we would get fatal errors and crashes. |
||||
|
||||
## COM Object Lifetime in JACOB in Version 1.7 |
||||
|
||||
In Version 1.7, all JACOB objects which wrap COM objects extend `com.jacob.com.JacobObject`. This object has some special code to register itself with a `com.jacob.com.ROT` object which represents a Running Object Table (ROT). This table maps a Thread to the set of JacobObjects created in that thread. Therefore, when you call `ComThread.Release()`, the ROT checks whether that thread has created any objects, and these objects are released by calling their native `release` method (which is public).This lifetime management method ties the lifecycle to the thread's lifecycle rather than the GC. The JacobObject's still have finalizers, but they will typically not perform the native `release` since that has already been called. The native `release` methods were written such that you can call them multiple times without worrying - since they zero out the native pointer when called the first time.If you choose to call `release` methods on your objects yourself, that is allowed. In that case, when the thread is released the release calls will be no-ops.It becomes important for you to call `ComThread.Release()` on any thread before you allow it to exit, otherwise you may get some random crashes later on in your code. |
||||
@ -0,0 +1,224 @@ |
||||
# COM Apartments in JACOB |
||||
|
||||
## introduction |
||||
|
||||
The COM model for Threading differs from the Java model. In COM, each component can declare whether or not it support multi-threading. You can find some basic information about COM threading at: |
||||
|
||||
* [http://www.execpc.com/~gopalan/com/com_threading.html](http://www.execpc.com/~gopalan/com/com_threading.html) |
||||
* [www.microsoft.com/msj/0297/apartment/apartment.htm](www.microsoft.com/msj/0297/apartment/apartment.htm) |
||||
* [http://www.cswl.com/whiteppr/white/multithreading.html](http://www.cswl.com/whiteppr/white/multithreading.html) |
||||
|
||||
The term **Single Threaded Apartment (STA)** refers to a thread where all COM objects created in that thread are single-threaded. This can manifest itself in two ways: |
||||
Either all calls into that component are made from the same thread that created the component |
||||
OR any call that is made from another thread gets serialized by COM. This serialization of calls is done by using a Windows message loop and posting messages to a hidden window (I'm not kidding). The way COM achieves this is by requiring any other thread to make calls through a local Proxy object rather than the original object (more on this when we discuss the JACOB DispatchProxy class).What does this mean for a Java application? If you are using a component that declares itself as **ThreadingModel "Apartment"** (you can find this out by looking in the registry under its CLSID), and you plan to create, use and destroy this component in one thread - then you are following the rules of an STA and you can declare the thread as an STA thread.On the other hand, if you need to make method calls from another thread (e.g. in a servlet) then you have a few choices. Either you create the component in its own STA, by extending `com.jacob.com.STA`, and use the `com.jacob.com.DispatchProxy` class to pass the Dispatch pointer between threads, or you can declare your thread as an MTA thread. In that case, COM will make the cross-thread calls into the STA that is running your component. If you create an Apartment threaded component in the MTA, COM will automatically create an STA for you and put your component in there, and then marshall all the calls.This brings us to the notion of a **Main STA**. COM requires that if there is any Apartment threaded component in your application, then the first STA created is tagged as the **Main STA**. COM uses the Main STA to create all the Apartment threaded components that are created from an MTA thread. The problem is that if you have already created an STA, then COM will pick that as the Main STA, and if you ever exit that thread - the whole application will exit. |
||||
|
||||
## COM Threads in JACOB Prior to Version 1.7 |
||||
|
||||
Up until version 1.7 of JACOB, there was only one model available in JACOB: |
||||
|
||||
* Before version 1.6: All threads were automatically initialized as STAs. |
||||
* In version 1.6: All threads were automatically initialized as MTAs. |
||||
|
||||
The reason for the change in default was that tagging a Java thread as an STA can cause problems. Any Java Swing application, as well as servlets and applets need to be able to make calls from multiple threads. If you try to make COM method calls across STA threads - it will fail!In most cases, the default chosen by JACOB 1.6 (MTA) works fine, however there are some notable exceptions that have caused people grief. One such exception is in the case of MAPI. It turns out that if you try to create a MAPI object from an MTA thread - it simply fails and exits. This has caused some people to recompile JACOB 1.6 back with the STA default.There is another problem with MTA threads: when you are using Apartment threaded components, we already noted that COM will create the components in the Main STA. If one doesn't exist, COM will create it. However, this means that **all** Apartment threaded components will be created in the **same STA**. This creates a bottleneck, and a dependency between unrelated components. Also, if that STA exits, then all components are destroyed and the application will likely crash. |
||||
|
||||
## COM Threads in JACOB Version 1.7 |
||||
|
||||
In Version 1.7 we have added finer grained control to allow the Java programmer to control how COM creates its components. Unfortunately, this means that you need to have a pretty good understanding of the dark and mystical subject of COM Apartments. There are a few different cases you need to consider: |
||||
|
||||
### Default |
||||
|
||||
If you simply run code that was created in Version 1.6 and ignore the COM threading issue, then you will get the same behavior as in 1.6: Each java thread will be an MTA thread, and all Apartment threaded components will be created by COM in its own Main STA. This typically works for most applications (exceptions noted above). |
||||
|
||||
### Create Your Own Apartment |
||||
|
||||
To declare an MTA thread use the following template: |
||||
``` |
||||
ComThread.InitMTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
``` |
||||
If you want JACOB to create its own Main STA (rather than having COM choose an STA for you), then you should use: |
||||
|
||||
``` |
||||
Thread 1: |
||||
ComThread.InitMTA(true); // a true tells JACOB to create a Main STA |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
Thread 2: |
||||
ComThread.InitMTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
... |
||||
ComThread.quitMainSTA(); |
||||
``` |
||||
|
||||
In this case, you can also create the Main STA explicitly: |
||||
|
||||
``` |
||||
ComThread.startMainSTA(); |
||||
... |
||||
... |
||||
Thread 1: |
||||
ComThread.InitMTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
Thread 2: |
||||
ComThread.InitMTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
... |
||||
ComThread.quitMainSTA(); |
||||
``` |
||||
|
||||
|
||||
In the latter case, all Apartment threaded components will be created in JACOB's main STA. This still has all the problems of components sharing the same Main STA and creating a bottleneck. To avoid that, you can also create STA threads yourself: |
||||
|
||||
|
||||
``` |
||||
ComThread.startMainSTA(); |
||||
... |
||||
... |
||||
Thread 1: |
||||
ComThread.InitSTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
Thread 2: |
||||
ComThread.InitMTA(); |
||||
... |
||||
... |
||||
ComThread.Release(); |
||||
... |
||||
... |
||||
ComThread.quitMainSTA(); |
||||
``` |
||||
|
||||
In this example, thread 1 is an STA and thread 2 is an MTA. You could omit the call to ComThread.startMainSTA(), but if you do, then COM will make the first STA your main one, and then if you exit that thread, the application will crash.Actually, Thread 1 is _almost_ an STA. It's lacking a windows message loop. So, this type of STA is fine as long as you are creating a component and using it in the same thread, and not makind event callbacks. |
||||
|
||||
### JACOB's STA Class |
||||
|
||||
If you want to create an true STA where you can create a component and then let other threads call methods on it, then you need a windows message loop. JACOB provides a class called: `com.jacob.com.STA` which does exactly this. |
||||
|
||||
``` |
||||
public class com.jacob.com.STA extends java.lang.Thread |
||||
{ |
||||
public com.jacob.com.STA(); |
||||
public boolean OnInit(); // you override this |
||||
public void OnQuit(); // you override this |
||||
public void quit(); // you can call this from ANY thread |
||||
} |
||||
``` |
||||
|
||||
The STA class extends `java.lang.Thread` and it provides you with two methods that you can override: `OnInit` and `OnQuit`. These methods are called from the thread's `run` method so they will execute in the new thread. These methods allow you to create COM components (Dispatch objects) and release them. To create an STA, you subclass it and override the OnInit.The `quit` method is the **only** other method that can be called from any thread. This method uses the Win32 function `PostThreadMessage` to force the STA's windows message loop to exit, thereby terminating the thread.You will then need to make calls into the component that is running in the STA thread. If you simply try to make calls from another thread on a Dispatch object created in the STA thread, you will get a COM Exception. For more details see: [Don Box 'Effective COM' Rule 29](http://www.develop.com/effectivecom): Don't Access raw interface pointers across apartment boundaries. |
||||
|
||||
### The DispatchProxy Class |
||||
|
||||
Since you cannot call methods directly on a Dispatch object created in another STA JACOB provides a method for the class that created the Dispatch object to marshal it to your thread. This is done via the `com.jacob.com.DispatchProxy` class. |
||||
``` |
||||
public class DispatchProxy extends JacobObject { |
||||
public DispatchProxy(Dispatch); |
||||
public Dispatch toDispatch(); |
||||
|
||||
public native void release(); |
||||
public void finalize(); |
||||
} |
||||
``` |
||||
This class works as follows: the thread that created the Dispatch object constructs an instance of DispatchProxy(Dispatch) with the Dispatch as a parameter. This instance can then be accessed from another thread, which will invoke its `toDispatch` method proxy as if it were local to your thread. COM will do the inter-thread marshalling transparently.The following example is part of samples/test/ScriptTest2.java in the JACOB distribution. It shows how you can create the ScriptControl in one STA thread and make method calls on it from another: |
||||
|
||||
``` |
||||
import com.jacob.com.*; |
||||
import com.jacob.activeX.*; |
||||
|
||||
class ScriptTest2 extends STA |
||||
{ |
||||
public static ActiveXComponent sC; |
||||
public static Dispatch sControl = null; |
||||
public static DispatchProxy sCon = null; |
||||
|
||||
public boolean OnInit() |
||||
{ |
||||
try |
||||
{ |
||||
System.out.println("OnInit"); |
||||
System.out.println(Thread.currentThread()); |
||||
String lang = "VBScript"; |
||||
|
||||
sC = new ActiveXComponent("ScriptControl"); |
||||
sControl = (Dispatch)sC.getObject(); |
||||
|
||||
// sCon can be called from another thread |
||||
sCon = new DispatchProxy(sControl); |
||||
|
||||
Dispatch.put(sControl, "Language", lang); |
||||
return true; |
||||
} |
||||
catch (Exception e) |
||||
{ |
||||
e.printStackTrace(); |
||||
return false; |
||||
} |
||||
} |
||||
|
||||
public void OnQuit() |
||||
{ |
||||
System.out.println("OnQuit"); |
||||
} |
||||
|
||||
public static void main(String args[]) throws Exception |
||||
{ |
||||
try { |
||||
ComThread.InitSTA(); |
||||
ScriptTest2 script = new ScriptTest2(); |
||||
Thread.sleep(1000); |
||||
|
||||
// get a thread-local Dispatch from sCon |
||||
Dispatch sc = sCon.toDispatch(); |
||||
|
||||
// call a method on the thread-local Dispatch obtained |
||||
// from the DispatchProxy. If you try to make the same |
||||
// method call on the sControl object - you will get a |
||||
// ComException. |
||||
Variant result = Dispatch.call(sc, "Eval", args[0]); |
||||
System.out.println("eval("+args[0]+") = "+ result); |
||||
script.quit(); |
||||
System.out.println("called quit"); |
||||
} catch (ComException e) { |
||||
e.printStackTrace(); |
||||
} |
||||
finally |
||||
{ |
||||
ComThread.Release(); |
||||
} |
||||
} |
||||
} |
||||
``` |
||||
|
||||
You can try to modify the `Dispatch.call` invocation in the main thread to use `sControl` directly, and you will see that it fails. Notice that once we construct the ScriptTest2 object in the main thread, we sleep for a second to allow the other thread time to initialize itself.The STA thread calls `sCon = new DispatchProxy(sControl);` to save a global reference to the DispatchProxy that represents the `sControl` object. The main thread then calls: `Dispatch sc = sCon.toDispatch();` to get a local Dispatch proxy out of the DispatchProxy object.At most **one(!)** thread can call toDispatch(), and the call can be made only once. This is because a IStream object is used to pass the proxy, and it is only written once and closed when you read it. If you need multiple threads to access a Dispatch pointer, then create that many DispatchProxy objects. For more details please refer to the Don Box reference above. |
||||
|
||||
### Recommended Procedure |
||||
|
||||
* It is recommended that you always allow JACOB to manage the main STA rather than letting COM create one on its own or tag one of yours. |
||||
* Declare an STA thread using ComThread.InitSTA() if all your method calls for that component are going to come from the same thread. |
||||
* If you want an STA thread that allows other threads to call into it, use the `com.jacob.com.STA` class as outlined above. |
||||
* If you have a COM component that declares its ThreadingModel as "Free" or "Both", then use the MTA. |
||||
* In most cases, if you need to make method calls from multiple threads, you can simply use MTA threads, and allow COM to create the components in the Main STA. You should only create your own STA's and DispatchProxy if you understand COM well enough to know when the MTA solution will fail or have other shortcomings. |
||||
|
||||
There are 3 examples in the samples/test directory that demonstrate these cases: |
||||
|
||||
* ScriptTest.java - creates an STA for the ScriptControl component and runs all its method calls from that STA. |
||||
* ScriptTest2.java - creates a separate STA thread, and makes method calls into the component from another thread using DispatchProxy. |
||||
* ScriptTest3.java - creates a separate MTA thread, and makes method calls into the component from another MTA thread. This is simpler than ScriptTest2 for most applications. |
||||
|
||||
### Default Threading Model |
||||
|
||||
If you create a new thread, and don't call `ComThread.InitSTA()` or `ComThread.InitMTA()` on it, then the first time your java code creates a JacobObject, it will try to register itself with the ROT, and when it sees that the current thread is not initialized, it will initialize it as MTA. This means that the code to do this is no longer inside the native jni code - it is now in the `com.jacob.com.ROT` class. For more details on the ROT, see the [Object Lifetime](JacobComLifetime.html) document. |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,46 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>All Classes (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1 class="bar">All Classes</h1> |
||||
<div class="indexContainer"> |
||||
<ul> |
||||
<li><a href="com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX" target="classFrame">ActiveXComponent</a></li> |
||||
<li><a href="com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX" target="classFrame">ActiveXDispatchEvents</a></li> |
||||
<li><a href="com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX" target="classFrame">ActiveXInvocationProxy</a></li> |
||||
<li><a href="com/jacob/com/ComException.html" title="class in com.jacob.com" target="classFrame">ComException</a></li> |
||||
<li><a href="com/jacob/com/ComFailException.html" title="class in com.jacob.com" target="classFrame">ComFailException</a></li> |
||||
<li><a href="com/jacob/com/ComThread.html" title="class in com.jacob.com" target="classFrame">ComThread</a></li> |
||||
<li><a href="com/jacob/com/Currency.html" title="class in com.jacob.com" target="classFrame">Currency</a></li> |
||||
<li><a href="com/jacob/com/DateUtilities.html" title="class in com.jacob.com" target="classFrame">DateUtilities</a></li> |
||||
<li><a href="com/jacob/com/Dispatch.html" title="class in com.jacob.com" target="classFrame">Dispatch</a></li> |
||||
<li><a href="com/jacob/com/DispatchEvents.html" title="class in com.jacob.com" target="classFrame">DispatchEvents</a></li> |
||||
<li><a href="com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com" target="classFrame">DispatchIdentifier</a></li> |
||||
<li><a href="com/jacob/com/DispatchProxy.html" title="class in com.jacob.com" target="classFrame">DispatchProxy</a></li> |
||||
<li><a href="com/jacob/com/EnumVariant.html" title="class in com.jacob.com" target="classFrame">EnumVariant</a></li> |
||||
<li><a href="com/jacob/com/InvocationProxy.html" title="class in com.jacob.com" target="classFrame">InvocationProxy</a></li> |
||||
<li><a href="com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com" target="classFrame">InvocationProxyAllVariants</a></li> |
||||
<li><a href="com/jacob/com/JacobException.html" title="class in com.jacob.com" target="classFrame">JacobException</a></li> |
||||
<li><a href="com/jacob/com/JacobObject.html" title="class in com.jacob.com" target="classFrame">JacobObject</a></li> |
||||
<li><a href="com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com" target="classFrame">JacobReleaseInfo</a></li> |
||||
<li><a href="com/jacob/com/LibraryLoader.html" title="class in com.jacob.com" target="classFrame">LibraryLoader</a></li> |
||||
<li><a href="com/jacob/com/MainSTA.html" title="class in com.jacob.com" target="classFrame">MainSTA</a></li> |
||||
<li><a href="com/jacob/com/NotImplementedException.html" title="class in com.jacob.com" target="classFrame">NotImplementedException</a></li> |
||||
<li><a href="com/jacob/com/ROT.html" title="class in com.jacob.com" target="classFrame">ROT</a></li> |
||||
<li><a href="com/jacob/com/SafeArray.html" title="class in com.jacob.com" target="classFrame">SafeArray</a></li> |
||||
<li><a href="com/jacob/com/STA.html" title="class in com.jacob.com" target="classFrame">STA</a></li> |
||||
<li><a href="com/jacob/com/Variant.html" title="class in com.jacob.com" target="classFrame">Variant</a></li> |
||||
<li><a href="com/jacob/com/VariantUtilities.html" title="class in com.jacob.com" target="classFrame">VariantUtilities</a></li> |
||||
<li><a href="com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com" target="classFrame">VariantViaEvent</a></li> |
||||
<li><a href="com/jacob/com/WrongThreadException.html" title="class in com.jacob.com" target="classFrame">WrongThreadException</a></li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,46 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>All Classes (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1 class="bar">All Classes</h1> |
||||
<div class="indexContainer"> |
||||
<ul> |
||||
<li><a href="com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></li> |
||||
<li><a href="com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">ActiveXDispatchEvents</a></li> |
||||
<li><a href="com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">ActiveXInvocationProxy</a></li> |
||||
<li><a href="com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></li> |
||||
<li><a href="com/jacob/com/ComFailException.html" title="class in com.jacob.com">ComFailException</a></li> |
||||
<li><a href="com/jacob/com/ComThread.html" title="class in com.jacob.com">ComThread</a></li> |
||||
<li><a href="com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></li> |
||||
<li><a href="com/jacob/com/DateUtilities.html" title="class in com.jacob.com">DateUtilities</a></li> |
||||
<li><a href="com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></li> |
||||
<li><a href="com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></li> |
||||
<li><a href="com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com">DispatchIdentifier</a></li> |
||||
<li><a href="com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">DispatchProxy</a></li> |
||||
<li><a href="com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></li> |
||||
<li><a href="com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></li> |
||||
<li><a href="com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">InvocationProxyAllVariants</a></li> |
||||
<li><a href="com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></li> |
||||
<li><a href="com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></li> |
||||
<li><a href="com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com">JacobReleaseInfo</a></li> |
||||
<li><a href="com/jacob/com/LibraryLoader.html" title="class in com.jacob.com">LibraryLoader</a></li> |
||||
<li><a href="com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></li> |
||||
<li><a href="com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">NotImplementedException</a></li> |
||||
<li><a href="com/jacob/com/ROT.html" title="class in com.jacob.com">ROT</a></li> |
||||
<li><a href="com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></li> |
||||
<li><a href="com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></li> |
||||
<li><a href="com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></li> |
||||
<li><a href="com/jacob/com/VariantUtilities.html" title="class in com.jacob.com">VariantUtilities</a></li> |
||||
<li><a href="com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">VariantViaEvent</a></li> |
||||
<li><a href="com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">WrongThreadException</a></li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,396 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ActiveXDispatchEvents (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ActiveXDispatchEvents (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ActiveXDispatchEvents.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/ActiveXDispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXDispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.activeX</div> |
||||
<h2 title="Class ActiveXDispatchEvents" class="title">Class ActiveXDispatchEvents</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">com.jacob.com.JacobObject</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">com.jacob.com.DispatchEvents</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.activeX.ActiveXDispatchEvents</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">ActiveXDispatchEvents</span> |
||||
extends <a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></pre> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL. |
||||
<p> |
||||
Use this exactly like the DispatchEvents class. This class plugs in an |
||||
ActiveXInvocationProxy instead of an InvocationProxy. It is the |
||||
ActiveXInvocationProxy that implements the reflection calls and invoke the |
||||
found java event callbacks. See ActiveXInvocationProxy for details.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-">ActiveXDispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</code> |
||||
<div class="block">This is the most commonly used constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-">ActiveXDispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</code> |
||||
<div class="block">None of the samples use this constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-">ActiveXDispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</code> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html#getInvocationProxy-java.lang.Object-">getInvocationProxy</a></span>(java.lang.Object pTargetObject)</code> |
||||
<div class="block">Returns an instance of the proxy configured with pTargetObject as its |
||||
target</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.DispatchEvents"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></h3> |
||||
<code><a href="../../../com/jacob/com/DispatchEvents.html#finalize--">finalize</a>, <a href="../../../com/jacob/com/DispatchEvents.html#safeRelease--">safeRelease</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.JacobObject"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></h3> |
||||
<code><a href="../../../com/jacob/com/JacobObject.html#debug-java.lang.String-">debug</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildDate--">getBuildDate</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildVersion--">getBuildVersion</a>, <a href="../../../com/jacob/com/JacobObject.html#isDebugEnabled--">isDebugEnabled</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ActiveXDispatchEvents</h4> |
||||
<pre>public ActiveXDispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</pre> |
||||
<div class="block">This is the most commonly used constructor. |
||||
<p> |
||||
Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ActiveXDispatchEvents</h4> |
||||
<pre>public ActiveXDispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</pre> |
||||
<div class="block">None of the samples use this constructor. |
||||
<p> |
||||
Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
<dd><code>progId</code> - ???</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ActiveXDispatchEvents</h4> |
||||
<pre>public ActiveXDispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</pre> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback. |
||||
|
||||
<pre> |
||||
>ActiveXDispatchEvents de = |
||||
new ActiveXDispatchEvents(someDispatch,someEventHAndler, |
||||
"Excel.Application", |
||||
"C:\\Program Files\\Microsoft Office\\OFFICE11\\EXCEL.EXE");</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
<dd><code>progId</code> - , mandatory if the typelib is specified</dd> |
||||
<dd><code>typeLib</code> - The location of the typelib to use</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="getInvocationProxy-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getInvocationProxy</h4> |
||||
<pre>protected <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> getInvocationProxy(java.lang.Object pTargetObject)</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/DispatchEvents.html#getInvocationProxy-java.lang.Object-">DispatchEvents</a></code></span></div> |
||||
<div class="block">Returns an instance of the proxy configured with pTargetObject as its |
||||
target</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/DispatchEvents.html#getInvocationProxy-java.lang.Object-">getInvocationProxy</a></code> in class <code><a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></code></dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>InvocationProxy an instance of the proxy this DispatchEvents will |
||||
send to the COM layer</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ActiveXDispatchEvents.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/ActiveXDispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXDispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,344 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ActiveXInvocationProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ActiveXInvocationProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ActiveXInvocationProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li>Next Class</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/ActiveXInvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXInvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.InvocationProxy">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.activeX</div> |
||||
<h2 title="Class ActiveXInvocationProxy" class="title">Class ActiveXInvocationProxy</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">com.jacob.com.InvocationProxy</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.activeX.ActiveXInvocationProxy</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">ActiveXInvocationProxy</span> |
||||
extends <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></pre> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL. |
||||
<p> |
||||
This class that lets event handlers receive events with all java objects as |
||||
parameters. The standard Jacob event methods all accept an array of Variant |
||||
objects. When using this class, you can set up your event methods as regular |
||||
java methods with the correct number of parameters of the correct java type. |
||||
This does NOT work for any event that wishes to accept a call back and modify |
||||
the calling parameters to tell windows what to do. An example is when an |
||||
event lets the receiver cancel the action by setting a boolean flag to false. |
||||
The java objects cannot be modified and their values will not be passed back |
||||
into the originating Variants even if they could be modified. |
||||
<p> |
||||
This class acts as a proxy between the windows event callback mechanism and |
||||
the Java classes that are looking for events. It assumes that all of the Java |
||||
classes that are looking for events implement methods with the same names as |
||||
the windows events and that the implemented methods native java objects of |
||||
the type and order that match the windows documentation. The methods can |
||||
return void or a Variant that will be returned to the calling layer. All |
||||
Event methods that will be recognized by InvocationProxyAllEvents have the |
||||
signature |
||||
|
||||
<code> void eventMethodName(Object,Object...)</code> or |
||||
<code> Object eventMethodName(Object,Object...)</code></div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.com.jacob.com.InvocationProxy"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></h3> |
||||
<code><a href="../../../com/jacob/com/InvocationProxy.html#mTargetObject">mTargetObject</a></code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html#ActiveXInvocationProxy--">ActiveXInvocationProxy</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> |
||||
<div class="block">The method actually invoked by EventProxy.cpp.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.InvocationProxy"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></h3> |
||||
<code><a href="../../../com/jacob/com/InvocationProxy.html#getVariant--">getVariant</a>, <a href="../../../com/jacob/com/InvocationProxy.html#setTarget-java.lang.Object-">setTarget</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ActiveXInvocationProxy--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ActiveXInvocationProxy</h4> |
||||
<pre>public ActiveXInvocationProxy()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="invoke-java.lang.String-com.jacob.com.Variant:A-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>invoke</h4> |
||||
<pre>public <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> invoke(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">InvocationProxy</a></code></span></div> |
||||
<div class="block">The method actually invoked by EventProxy.cpp. The method name is |
||||
calculated by the underlying JNI code from the MS windows Callback |
||||
function name. The method is assumed to take an array of Variant objects. |
||||
The method may return a Variant or be a void. Those are the only two |
||||
options that will not blow up. |
||||
<p> |
||||
Subclasses that override this should make sure mTargetObject is not null |
||||
before processing.</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></code> in class <code><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></dd> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>methodName</code> - name of method in mTargetObject we will invoke</dd> |
||||
<dd><code>targetParameters</code> - Variant[] that is the single parameter to the method</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an object that will be returned to the com event caller</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ActiveXInvocationProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li>Next Class</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/ActiveXInvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXInvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.InvocationProxy">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,194 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.activeX.ActiveXComponent (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.activeX.ActiveXComponent (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXComponent.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXComponent.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.activeX.ActiveXComponent" class="title">Uses of Class<br>com.jacob.activeX.ActiveXComponent</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> that return <a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#connectToActiveInstance-java.lang.String-">connectToActiveInstance</a></span>(java.lang.String pRequestedProgramId)</code> |
||||
<div class="block">Most code should use the standard ActiveXComponent(String) constructor |
||||
and not this factory method.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#createNewInstance-java.lang.String-">createNewInstance</a></span>(java.lang.String pRequestedProgramId)</code> |
||||
<div class="block">Most code should use the standard ActiveXComponent(String) contructor and |
||||
not this factory method.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#getPropertyAsComponent-java.lang.String-">getPropertyAsComponent</a></span>(java.lang.String propertyName)</code> |
||||
<div class="block">retrieves a property and returns it as an ActiveX component</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invokeGetComponent-java.lang.String-">invokeGetComponent</a></span>(java.lang.String callAction)</code> |
||||
<div class="block">makes a dispatch call for the passed in action and no parameter</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invokeGetComponent-java.lang.String-com.jacob.com.Variant...-">invokeGetComponent</a></span>(java.lang.String callAction, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>... parameters)</code> |
||||
<div class="block">makes a dispatch call for the passed in action and single parameter</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXComponent.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXComponent.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.activeX.ActiveXDispatchEvents (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.activeX.ActiveXDispatchEvents (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXDispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXDispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.activeX.ActiveXDispatchEvents" class="title">Uses of Class<br>com.jacob.activeX.ActiveXDispatchEvents</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.activeX.ActiveXDispatchEvents</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXDispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXDispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.activeX.ActiveXInvocationProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.activeX.ActiveXInvocationProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXInvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXInvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.activeX.ActiveXInvocationProxy" class="title">Uses of Class<br>com.jacob.activeX.ActiveXInvocationProxy</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.activeX.ActiveXInvocationProxy</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/activeX/class-use/ActiveXInvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="ActiveXInvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,22 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.activeX (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1 class="bar"><a href="../../../com/jacob/activeX/package-summary.html" target="classFrame">com.jacob.activeX</a></h1> |
||||
<div class="indexContainer"> |
||||
<h2 title="Classes">Classes</h2> |
||||
<ul title="Classes"> |
||||
<li><a href="ActiveXComponent.html" title="class in com.jacob.activeX" target="classFrame">ActiveXComponent</a></li> |
||||
<li><a href="ActiveXDispatchEvents.html" title="class in com.jacob.activeX" target="classFrame">ActiveXDispatchEvents</a></li> |
||||
<li><a href="ActiveXInvocationProxy.html" title="class in com.jacob.activeX" target="classFrame">ActiveXInvocationProxy</a></li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,158 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.activeX (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="com.jacob.activeX (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-use.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev Package</li> |
||||
<li><a href="../../../com/jacob/com/package-summary.html">Next Package</a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="package-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Package" class="title">Package com.jacob.activeX</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> |
||||
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Class</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">This class provides a higher level, more object like, wrapper for top of the |
||||
Dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">ActiveXDispatchEvents</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">ActiveXInvocationProxy</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-use.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev Package</li> |
||||
<li><a href="../../../com/jacob/com/package-summary.html">Next Package</a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="package-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,156 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.activeX Class Hierarchy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="com.jacob.activeX Class Hierarchy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li><a href="../../../com/jacob/com/package-tree.html">Next</a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="package-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For Package com.jacob.activeX</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="../../../overview-tree.html">All Packages</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li type="circle">java.lang.Object |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">InvocationProxy</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXInvocationProxy</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">JacobObject</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Dispatch</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXComponent</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchEvents</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXDispatchEvents</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li><a href="../../../com/jacob/com/package-tree.html">Next</a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="package-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,161 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Package com.jacob.activeX (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Package com.jacob.activeX (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-use.html" target="_top">Frames</a></li> |
||||
<li><a href="package-use.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Uses of Package com.jacob.activeX" class="title">Uses of Package<br>com.jacob.activeX</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> |
||||
<caption><span>Classes in <a href="../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> used by <a href="../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/activeX/class-use/ActiveXComponent.html#com.jacob.activeX">ActiveXComponent</a> |
||||
<div class="block">This class provides a higher level, more object like, wrapper for top of the |
||||
Dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/activeX/package-use.html" target="_top">Frames</a></li> |
||||
<li><a href="package-use.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,569 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ComException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ComException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev Class</li> |
||||
<li><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class ComException" class="title">Class ComException</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Throwable</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Exception</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.RuntimeException</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">com.jacob.com.JacobException</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.ComException</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.io.Serializable</dd> |
||||
</dl> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">ComFailException</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public abstract class <span class="typeNameLabel">ComException</span> |
||||
extends <a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></pre> |
||||
<div class="block">Standard exception thrown by com jni code when there is a problem</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../serialized-form.html#com.jacob.com.ComException">Serialized Form</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#hr">hr</a></span></code> |
||||
<div class="block">COM code initializes this filed with an appropriate return code that was |
||||
returned by the underlying com code</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#m_helpContext">m_helpContext</a></span></code> |
||||
<div class="block">No documentation is available at this time.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#m_helpFile">m_helpFile</a></span></code> |
||||
<div class="block">No documentation is available at this time.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#m_source">m_source</a></span></code> |
||||
<div class="block">No documentation is available at this time.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException--">ComException</a></span>()</code> |
||||
<div class="block">constructor</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException-int-">ComException</a></span>(int newHr)</code> |
||||
<div class="block">constructor with error code?</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException-int-java.lang.String-">ComException</a></span>(int newHr, |
||||
java.lang.String description)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException-int-java.lang.String-java.lang.String-int-">ComException</a></span>(int newHr, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException-int-java.lang.String-java.lang.String-java.lang.String-int-">ComException</a></span>(int newHr, |
||||
java.lang.String description, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#ComException-java.lang.String-">ComException</a></span>(java.lang.String description)</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#getHelpContext--">getHelpContext</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#getHelpFile--">getHelpFile</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#getHResult--">getHResult</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComException.html#getSource--">getSource</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Throwable</h3> |
||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="hr"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>hr</h4> |
||||
<pre>protected int hr</pre> |
||||
<div class="block">COM code initializes this filed with an appropriate return code that was |
||||
returned by the underlying com code</div> |
||||
</li> |
||||
</ul> |
||||
<a name="m_helpContext"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>m_helpContext</h4> |
||||
<pre>protected int m_helpContext</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
</ul> |
||||
<a name="m_helpFile"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>m_helpFile</h4> |
||||
<pre>protected java.lang.String m_helpFile</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
</ul> |
||||
<a name="m_source"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>m_source</h4> |
||||
<pre>protected java.lang.String m_source</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ComException--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException()</pre> |
||||
<div class="block">constructor</div> |
||||
</li> |
||||
</ul> |
||||
<a name="ComException-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException(int newHr)</pre> |
||||
<div class="block">constructor with error code?</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newHr</code> - ??</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComException-int-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException(int newHr, |
||||
java.lang.String description)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newHr</code> - </dd> |
||||
<dd><code>description</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComException-int-java.lang.String-java.lang.String-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException(int newHr, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newHr</code> - </dd> |
||||
<dd><code>source</code> - </dd> |
||||
<dd><code>helpFile</code> - </dd> |
||||
<dd><code>helpContext</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComException-int-java.lang.String-java.lang.String-java.lang.String-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException(int newHr, |
||||
java.lang.String description, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newHr</code> - </dd> |
||||
<dd><code>description</code> - </dd> |
||||
<dd><code>source</code> - </dd> |
||||
<dd><code>helpFile</code> - </dd> |
||||
<dd><code>helpContext</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComException-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ComException</h4> |
||||
<pre>public ComException(java.lang.String description)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>description</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="getHelpContext--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getHelpContext</h4> |
||||
<pre>public int getHelpContext()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>int representation of the help context</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getHelpFile--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getHelpFile</h4> |
||||
<pre>public java.lang.String getHelpFile()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String ??? help file</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getHResult--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getHResult</h4> |
||||
<pre>public int getHResult()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>int hr result ??</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getSource--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getSource</h4> |
||||
<pre>public java.lang.String getSource()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String source ??</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev Class</li> |
||||
<li><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,417 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ComFailException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ComFailException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComFailException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComFailException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComFailException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.ComException">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.com.jacob.com.ComException">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class ComFailException" class="title">Class ComFailException</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Throwable</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Exception</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.RuntimeException</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">com.jacob.com.JacobException</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">com.jacob.com.ComException</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.ComFailException</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.io.Serializable</dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">ComFailException</span> |
||||
extends <a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></pre> |
||||
<div class="block">COM Fail Exception class raised when there is a problem</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../serialized-form.html#com.jacob.com.ComFailException">Serialized Form</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.com.jacob.com.ComException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class com.jacob.com.<a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></h3> |
||||
<code><a href="../../../com/jacob/com/ComException.html#hr">hr</a>, <a href="../../../com/jacob/com/ComException.html#m_helpContext">m_helpContext</a>, <a href="../../../com/jacob/com/ComException.html#m_helpFile">m_helpFile</a>, <a href="../../../com/jacob/com/ComException.html#m_source">m_source</a></code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException--">ComFailException</a></span>()</code> |
||||
<div class="block">No argument Constructor</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException-int-">ComFailException</a></span>(int hrNew)</code> |
||||
<div class="block">Constructor</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException-int-java.lang.String-">ComFailException</a></span>(int hrNew, |
||||
java.lang.String message)</code> |
||||
<div class="block">Constructor</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException-int-java.lang.String-java.lang.String-int-">ComFailException</a></span>(int hrNew, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException-int-java.lang.String-java.lang.String-java.lang.String-int-">ComFailException</a></span>(int hrNew, |
||||
java.lang.String description, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</code> |
||||
<div class="block">Constructor</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComFailException.html#ComFailException-java.lang.String-">ComFailException</a></span>(java.lang.String message)</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.ComException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></h3> |
||||
<code><a href="../../../com/jacob/com/ComException.html#getHelpContext--">getHelpContext</a>, <a href="../../../com/jacob/com/ComException.html#getHelpFile--">getHelpFile</a>, <a href="../../../com/jacob/com/ComException.html#getHResult--">getHResult</a>, <a href="../../../com/jacob/com/ComException.html#getSource--">getSource</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Throwable</h3> |
||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ComFailException-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException(int hrNew)</pre> |
||||
<div class="block">Constructor</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>hrNew</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComFailException-int-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException(int hrNew, |
||||
java.lang.String message)</pre> |
||||
<div class="block">Constructor</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>hrNew</code> - </dd> |
||||
<dd><code>message</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComFailException-int-java.lang.String-java.lang.String-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException(int hrNew, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>hrNew</code> - </dd> |
||||
<dd><code>source</code> - </dd> |
||||
<dd><code>helpFile</code> - </dd> |
||||
<dd><code>helpContext</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComFailException-int-java.lang.String-java.lang.String-java.lang.String-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException(int hrNew, |
||||
java.lang.String description, |
||||
java.lang.String source, |
||||
java.lang.String helpFile, |
||||
int helpContext)</pre> |
||||
<div class="block">Constructor</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>hrNew</code> - </dd> |
||||
<dd><code>description</code> - </dd> |
||||
<dd><code>source</code> - </dd> |
||||
<dd><code>helpFile</code> - </dd> |
||||
<dd><code>helpContext</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="ComFailException--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException()</pre> |
||||
<div class="block">No argument Constructor</div> |
||||
</li> |
||||
</ul> |
||||
<a name="ComFailException-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ComFailException</h4> |
||||
<pre>public ComFailException(java.lang.String message)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>message</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComFailException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComFailException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComFailException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.ComException">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.com.jacob.com.ComException">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,528 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ComThread (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ComThread (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9,"i7":9,"i8":9,"i9":41,"i10":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComThread.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComThread.html" target="_top">Frames</a></li> |
||||
<li><a href="ComThread.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class ComThread" class="title">Class ComThread</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.ComThread</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public abstract class <span class="typeNameLabel">ComThread</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">Represents a COM level thread This is an abstract class because all the |
||||
methods are static and no instances are ever created.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#haveSTA">haveSTA</a></span></code> |
||||
<div class="block">Comment for <code>haveSTA</code></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#mainSTA">mainSTA</a></span></code> |
||||
<div class="block">Comment for <code>mainSTA</code></div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#ComThread--">ComThread</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#doCoInitialize-int-">doCoInitialize</a></span>(int threadModel)</code> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#doCoUninitialize--">doCoUninitialize</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#Init-boolean-int-">Init</a></span>(boolean createMainSTA, |
||||
int mode)</code> |
||||
<div class="block">Initialize the current java thread to be part of the MTA/STA COM |
||||
Apartment</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#InitMTA--">InitMTA</a></span>()</code> |
||||
<div class="block">Initialize the current java thread to be part of the Multi-threaded COM |
||||
Apartment</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#InitMTA-boolean-">InitMTA</a></span>(boolean createMainSTA)</code> |
||||
<div class="block">Initialize the current java thread to be part of the Multi-threaded COM |
||||
Apartment, if createMainSTA is true, create a separate MainSTA thread |
||||
that will house all Apartment Threaded components</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#InitSTA--">InitSTA</a></span>()</code> |
||||
<div class="block">Initialize the current java thread to be an STA</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#InitSTA-boolean-">InitSTA</a></span>(boolean createMainSTA)</code> |
||||
<div class="block">Initialize the current java thread to be an STA COM Apartment, if |
||||
createMainSTA is true, create a separate MainSTA thread that will house |
||||
all Apartment Threaded components</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#quitMainSTA--">quitMainSTA</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i8" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#Release--">Release</a></span>()</code> |
||||
<div class="block">Call CoUninitialize to release this java thread from COM</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i9" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#RemoveObject-com.jacob.com.JacobObject-">RemoveObject</a></span>(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. |
||||
|
||||
This will remove an object from the ROT</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i10" class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ComThread.html#startMainSTA--">startMainSTA</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="haveSTA"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>haveSTA</h4> |
||||
<pre>public static boolean haveSTA</pre> |
||||
<div class="block">Comment for <code>haveSTA</code></div> |
||||
</li> |
||||
</ul> |
||||
<a name="mainSTA"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>mainSTA</h4> |
||||
<pre>public static <a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a> mainSTA</pre> |
||||
<div class="block">Comment for <code>mainSTA</code></div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ComThread--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ComThread</h4> |
||||
<pre>public ComThread()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="InitMTA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>InitMTA</h4> |
||||
<pre>public static void InitMTA()</pre> |
||||
<div class="block">Initialize the current java thread to be part of the Multi-threaded COM |
||||
Apartment</div> |
||||
</li> |
||||
</ul> |
||||
<a name="InitSTA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>InitSTA</h4> |
||||
<pre>public static void InitSTA()</pre> |
||||
<div class="block">Initialize the current java thread to be an STA</div> |
||||
</li> |
||||
</ul> |
||||
<a name="InitMTA-boolean-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>InitMTA</h4> |
||||
<pre>public static void InitMTA(boolean createMainSTA)</pre> |
||||
<div class="block">Initialize the current java thread to be part of the Multi-threaded COM |
||||
Apartment, if createMainSTA is true, create a separate MainSTA thread |
||||
that will house all Apartment Threaded components</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>createMainSTA</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="InitSTA-boolean-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>InitSTA</h4> |
||||
<pre>public static void InitSTA(boolean createMainSTA)</pre> |
||||
<div class="block">Initialize the current java thread to be an STA COM Apartment, if |
||||
createMainSTA is true, create a separate MainSTA thread that will house |
||||
all Apartment Threaded components</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>createMainSTA</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="startMainSTA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>startMainSTA</h4> |
||||
<pre>public static void startMainSTA()</pre> |
||||
</li> |
||||
</ul> |
||||
<a name="quitMainSTA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>quitMainSTA</h4> |
||||
<pre>public static void quitMainSTA()</pre> |
||||
</li> |
||||
</ul> |
||||
<a name="Init-boolean-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Init</h4> |
||||
<pre>public static void Init(boolean createMainSTA, |
||||
int mode)</pre> |
||||
<div class="block">Initialize the current java thread to be part of the MTA/STA COM |
||||
Apartment</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>createMainSTA</code> - </dd> |
||||
<dd><code>mode</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Release--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Release</h4> |
||||
<pre>public static void Release()</pre> |
||||
<div class="block">Call CoUninitialize to release this java thread from COM</div> |
||||
</li> |
||||
</ul> |
||||
<a name="RemoveObject-com.jacob.com.JacobObject-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>RemoveObject</h4> |
||||
<pre>@Deprecated |
||||
public static void RemoveObject(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</pre> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. |
||||
|
||||
This will remove an object from the ROT</span></div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>o</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="doCoInitialize-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>doCoInitialize</h4> |
||||
<pre>public static void doCoInitialize(int threadModel)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>threadModel</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="doCoUninitialize--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>doCoUninitialize</h4> |
||||
<pre>public static void doCoUninitialize()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ComThread.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ComThread.html" target="_top">Frames</a></li> |
||||
<li><a href="ComThread.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,391 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Currency (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Currency (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/Currency.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/Currency.html" target="_top">Frames</a></li> |
||||
<li><a href="Currency.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class Currency" class="title">Class Currency</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.Currency</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">Currency</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">Most COM bridges use java.lang.Long as their Java data type for COM Currency |
||||
data. This is because COM currency is a 64 bit number where the last 4 digits |
||||
represent the milli-cents. We wanted to support 64 bit Long values for x64 |
||||
platforms so that meant we wanted to map Java.LONG to COM.LONG even though it |
||||
only works for 64 bit platforms. The end result was we needed a new |
||||
representation for Money so we have this. |
||||
<p> |
||||
In the future, this should convert to and from BigDecimal or Double</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#Currency-long-">Currency</a></span>(long newValue)</code> |
||||
<div class="block">constructor that takes a long already in COM representation</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#Currency-java.lang.String-">Currency</a></span>(java.lang.String newValue)</code> |
||||
<div class="block">constructor that takes a String already in COM representation</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#compareTo-com.jacob.com.Currency-">compareTo</a></span>(<a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> anotherCurrency)</code> |
||||
<div class="block">compares the values of two currencies</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#compareTo-java.lang.Object-">compareTo</a></span>(java.lang.Object o)</code> |
||||
<div class="block">standard comparison</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#equals-java.lang.Object-">equals</a></span>(java.lang.Object o)</code></td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>protected java.lang.Long</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#getLongValue--">getLongValue</a></span>()</code> |
||||
<div class="block">getter to the inner storage so that cmpareTo can work</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>long</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/Currency.html#longValue--">longValue</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="Currency-long-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Currency</h4> |
||||
<pre>public Currency(long newValue)</pre> |
||||
<div class="block">constructor that takes a long already in COM representation</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newValue</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Currency-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>Currency</h4> |
||||
<pre>public Currency(java.lang.String newValue)</pre> |
||||
<div class="block">constructor that takes a String already in COM representation</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>newValue</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="longValue--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>longValue</h4> |
||||
<pre>public long longValue()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the currency as a primitive long</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getLongValue--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getLongValue</h4> |
||||
<pre>protected java.lang.Long getLongValue()</pre> |
||||
<div class="block">getter to the inner storage so that cmpareTo can work</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the embedded long value</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="compareTo-com.jacob.com.Currency-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>compareTo</h4> |
||||
<pre>public int compareTo(<a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> anotherCurrency)</pre> |
||||
<div class="block">compares the values of two currencies</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>anotherCurrency</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the usual compareTo results</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="compareTo-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>compareTo</h4> |
||||
<pre>public int compareTo(java.lang.Object o)</pre> |
||||
<div class="block">standard comparison</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>o</code> - must be Currency or Long</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the usual compareTo results</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="equals-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>equals</h4> |
||||
<pre>public boolean equals(java.lang.Object o)</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>equals</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/Currency.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/Currency.html" target="_top">Frames</a></li> |
||||
<li><a href="Currency.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,360 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>DateUtilities (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="DateUtilities (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9,"i2":9,"i3":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DateUtilities.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DateUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="DateUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class DateUtilities" class="title">Class DateUtilities</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.DateUtilities</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">DateUtilities</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">java / windows date conversion utilities</div> |
||||
<dl> |
||||
<dt><span class="simpleTagLabel">Author:</span></dt> |
||||
<dd>joe</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DateUtilities.html#DateUtilities--">DateUtilities</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static double</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DateUtilities.html#convertDateToWindowsTime-java.util.Date-">convertDateToWindowsTime</a></span>(java.util.Date javaDate)</code> |
||||
<div class="block">converts a java date to a windows time object (is this timezone safe?)</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static double</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DateUtilities.html#convertMillisecondsToWindowsTime-long-">convertMillisecondsToWindowsTime</a></span>(long milliseconds)</code> |
||||
<div class="block">Convert a Java time to a COM time.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>static java.util.Date</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DateUtilities.html#convertWindowsTimeToDate-double-">convertWindowsTimeToDate</a></span>(double comTime)</code> |
||||
<div class="block">converts a windows time to a Java Date Object</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>static long</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DateUtilities.html#convertWindowsTimeToMilliseconds-double-">convertWindowsTimeToMilliseconds</a></span>(double comTime)</code> |
||||
<div class="block">Convert a COM time from functions Date(), Time(), Now() to a Java time |
||||
(milliseconds).</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="DateUtilities--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>DateUtilities</h4> |
||||
<pre>public DateUtilities()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="convertWindowsTimeToDate-double-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>convertWindowsTimeToDate</h4> |
||||
<pre>public static java.util.Date convertWindowsTimeToDate(double comTime)</pre> |
||||
<div class="block">converts a windows time to a Java Date Object</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>comTime</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Date object representing the windows time as specified in comTime</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="convertWindowsTimeToMilliseconds-double-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>convertWindowsTimeToMilliseconds</h4> |
||||
<pre>public static long convertWindowsTimeToMilliseconds(double comTime)</pre> |
||||
<div class="block">Convert a COM time from functions Date(), Time(), Now() to a Java time |
||||
(milliseconds). Visual Basic time values are based to 30.12.1899, Java |
||||
time values are based to 1.1.1970 (= 0 milliseconds). The difference is |
||||
added to the Visual Basic value to get the corresponding Java value. The |
||||
Visual Basic double value reads: <day count delta since 30.12.1899>.<1 |
||||
day percentage fraction>, e.g. "38100.6453" means: 38100 days since |
||||
30.12.1899 plus (24 hours * 0.6453). Example usage: |
||||
<code>Date javaDate = new Date(toMilliseconds (vbDate));</code>.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>comTime</code> - COM time.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Java time.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="convertDateToWindowsTime-java.util.Date-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>convertDateToWindowsTime</h4> |
||||
<pre>public static double convertDateToWindowsTime(java.util.Date javaDate)</pre> |
||||
<div class="block">converts a java date to a windows time object (is this timezone safe?)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>javaDate</code> - the java date to be converted to windows time</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the double representing the date in a form windows understands</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="convertMillisecondsToWindowsTime-long-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>convertMillisecondsToWindowsTime</h4> |
||||
<pre>public static double convertMillisecondsToWindowsTime(long milliseconds)</pre> |
||||
<div class="block">Convert a Java time to a COM time.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>milliseconds</code> - Java time.</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>COM time.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DateUtilities.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DateUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="DateUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,451 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>DispatchEvents (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="DispatchEvents (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DispatchEvents.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class DispatchEvents" class="title">Class DispatchEvents</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">com.jacob.com.JacobObject</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.DispatchEvents</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">ActiveXDispatchEvents</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">DispatchEvents</span> |
||||
extends <a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></pre> |
||||
<div class="block">This class creates the scaffolding for event callbacks. Every instance of tis |
||||
acts as a wrapper around some java object that wants callbacks from the |
||||
microsoft side. It represents the connection between Java and COM for |
||||
callbacks. |
||||
<p> |
||||
The callback mechanism will take any event that it receives and try and find |
||||
a java method with the same name that accepts the Variant... as a parameter. |
||||
It will then wrap the call back data in the Variant array and call the java |
||||
method of the object that this DispatchEvents object was initialized with. |
||||
<p> |
||||
Instances of this class are created with "sink object" that will receive the |
||||
event messages. The sink object is wrapped in an Invocation handler that |
||||
actually receives the messages and then forwards them on to the "sink |
||||
object". The constructors recognize when an instance of InvocationProxy is |
||||
passed in and do not create a new InvocationProxy as a wrapper. They instead |
||||
use the passed in InvocationProxy.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-">DispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</code> |
||||
<div class="block">This is the most commonly used constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-">DispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</code> |
||||
<div class="block">None of the samples use this constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-">DispatchEvents</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</code> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#finalize--">finalize</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>protected <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#getInvocationProxy-java.lang.Object-">getInvocationProxy</a></span>(java.lang.Object pTargetObject)</code> |
||||
<div class="block">Returns an instance of the proxy configured with pTargetObject as its |
||||
target</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchEvents.html#safeRelease--">safeRelease</a></span>()</code> |
||||
<div class="block">Finalizers call this method.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.JacobObject"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></h3> |
||||
<code><a href="../../../com/jacob/com/JacobObject.html#debug-java.lang.String-">debug</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildDate--">getBuildDate</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildVersion--">getBuildVersion</a>, <a href="../../../com/jacob/com/JacobObject.html#isDebugEnabled--">isDebugEnabled</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>DispatchEvents</h4> |
||||
<pre>public DispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</pre> |
||||
<div class="block">This is the most commonly used constructor. |
||||
<p> |
||||
Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback. |
||||
<p> |
||||
Can be used on any object that implements IProvideClassInfo.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>DispatchEvents</h4> |
||||
<pre>public DispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</pre> |
||||
<div class="block">None of the samples use this constructor. |
||||
<p> |
||||
Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback. |
||||
<p> |
||||
Used when the program doesn't implement IProvideClassInfo. It provides a |
||||
way to find the TypeLib in the registry based on the programId. The |
||||
TypeLib is looked up in the registry on the path |
||||
HKEY_LOCAL_MACHINE/SOFTWARE/Classes/CLSID/(CLID drived from |
||||
progid)/ProgID/Typelib</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
<dd><code>progId</code> - program id in the registry that has a TypeLib subkey. The |
||||
progrId is mapped to a CLSID that is they used to look up the |
||||
key to the Typelib</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>DispatchEvents</h4> |
||||
<pre>public DispatchEvents(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</pre> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback. |
||||
<p> |
||||
This method was added because Excel doesn't implement IProvideClassInfo |
||||
and the registry entry for Excel.Application doesn't include a typelib |
||||
key. |
||||
|
||||
<pre> |
||||
DispatchEvents de = new DispatchEvents(someDispatch, someEventHAndler, |
||||
"Excel.Application", |
||||
"C:\\Program Files\\Microsoft Office\\OFFICE11\\EXCEL.EXE"); |
||||
</pre></div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceOfEvent</code> - Dispatch object who's MS app will generate callbacks</dd> |
||||
<dd><code>eventSink</code> - Java object that wants to receive the events</dd> |
||||
<dd><code>progId</code> - , mandatory if the typelib is specified</dd> |
||||
<dd><code>typeLib</code> - The location of the typelib to use</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="getInvocationProxy-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getInvocationProxy</h4> |
||||
<pre>protected <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> getInvocationProxy(java.lang.Object pTargetObject)</pre> |
||||
<div class="block">Returns an instance of the proxy configured with pTargetObject as its |
||||
target</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>pTargetObject</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>InvocationProxy an instance of the proxy this DispatchEvents will |
||||
send to the COM layer</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="finalize--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>finalize</h4> |
||||
<pre>protected void finalize()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>finalize</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="safeRelease--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>safeRelease</h4> |
||||
<pre>public void safeRelease()</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">JacobObject</a></code></span></div> |
||||
<div class="block">Finalizers call this method. This method should release any COM data |
||||
structures in a way that it can be called multiple times. This can happen |
||||
if someone manually calls this and then a finalizer calls it.</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">safeRelease</a></code> in class <code><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DispatchEvents.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,381 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>DispatchProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="DispatchProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DispatchProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DispatchProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class DispatchProxy" class="title">Class DispatchProxy</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">com.jacob.com.JacobObject</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.DispatchProxy</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">DispatchProxy</span> |
||||
extends <a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></pre> |
||||
<div class="block">If you need to pass a COM Dispatch object between STA threads, you have to |
||||
marshall the interface. This class is used as follows: the STA that creates |
||||
the Dispatch object must construct an instance of this class. Another thread |
||||
can then call toDispatch() on that instance and get a Dispatch pointer which |
||||
has been marshalled. WARNING: You can only call toDispatch() once! If you |
||||
need to call it multiple times (or from multiple threads) you need to |
||||
construct a separate DispatchProxy instance for each such case!</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>long</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchProxy.html#m_pStream">m_pStream</a></span></code> |
||||
<div class="block">Comment for <code>m_pStream</code></div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchProxy.html#DispatchProxy-com.jacob.com.Dispatch-">DispatchProxy</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> localDispatch)</code> |
||||
<div class="block">Marshals the passed in dispatch into the stream</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchProxy.html#finalize--">finalize</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchProxy.html#safeRelease--">safeRelease</a></span>()</code> |
||||
<div class="block">Finalizers call this method.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/DispatchProxy.html#toDispatch--">toDispatch</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.JacobObject"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></h3> |
||||
<code><a href="../../../com/jacob/com/JacobObject.html#debug-java.lang.String-">debug</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildDate--">getBuildDate</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildVersion--">getBuildVersion</a>, <a href="../../../com/jacob/com/JacobObject.html#isDebugEnabled--">isDebugEnabled</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="m_pStream"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>m_pStream</h4> |
||||
<pre>public long m_pStream</pre> |
||||
<div class="block">Comment for <code>m_pStream</code></div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="DispatchProxy-com.jacob.com.Dispatch-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>DispatchProxy</h4> |
||||
<pre>public DispatchProxy(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> localDispatch)</pre> |
||||
<div class="block">Marshals the passed in dispatch into the stream</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>localDispatch</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="toDispatch--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>toDispatch</h4> |
||||
<pre>public <a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> toDispatch()</pre> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Dispatch the dispatch retrieved from the stream</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="finalize--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>finalize</h4> |
||||
<pre>public void finalize()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>finalize</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="safeRelease--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>safeRelease</h4> |
||||
<pre>public void safeRelease()</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">JacobObject</a></code></span></div> |
||||
<div class="block">Finalizers call this method. This method should release any COM data |
||||
structures in a way that it can be called multiple times. This can happen |
||||
if someone manually calls this and then a finalizer calls it.</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">safeRelease</a></code> in class <code><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/DispatchProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/DispatchProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,464 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>EnumVariant (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="EnumVariant (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":42,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/EnumVariant.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/EnumVariant.html" target="_top">Frames</a></li> |
||||
<li><a href="EnumVariant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class EnumVariant" class="title">Class EnumVariant</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">com.jacob.com.JacobObject</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.EnumVariant</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.util.Enumeration<<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">EnumVariant</span> |
||||
extends <a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> |
||||
implements java.util.Enumeration<<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>></pre> |
||||
<div class="block">An implementation of IEnumVariant based on code submitted by Thomas Hallgren |
||||
(mailto:Thomas.Hallgren@eoncompany.com)</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier</th> |
||||
<th class="colLast" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code> </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#EnumVariant-com.jacob.com.Dispatch-">EnumVariant</a></span>(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> disp)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#EnumVariant-long-">EnumVariant</a></span>(long pIEnumVARIANT)</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#finalize--">finalize</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#hasMoreElements--">hasMoreElements</a></span>()</code> |
||||
<div class="block">Implements java.util.Enumeration</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#Next--">Next</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">use nextElement() instead</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#Next-com.jacob.com.Variant:A-">Next</a></span>(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] receiverArray)</code> |
||||
<div class="block">This should be private and wrapped to protect JNI layer.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#nextElement--">nextElement</a></span>()</code> |
||||
<div class="block">Implements java.util.Enumeration</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#Reset--">Reset</a></span>()</code> |
||||
<div class="block">This should be private and wrapped to protect JNI layer</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#safeRelease--">safeRelease</a></span>()</code> |
||||
<div class="block">Finalizers call this method.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i7" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/EnumVariant.html#Skip-int-">Skip</a></span>(int count)</code> |
||||
<div class="block">This should be private and wrapped to protect JNI layer.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.JacobObject"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></h3> |
||||
<code><a href="../../../com/jacob/com/JacobObject.html#debug-java.lang.String-">debug</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildDate--">getBuildDate</a>, <a href="../../../com/jacob/com/JacobObject.html#getBuildVersion--">getBuildVersion</a>, <a href="../../../com/jacob/com/JacobObject.html#isDebugEnabled--">isDebugEnabled</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="EnumVariant-long-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>EnumVariant</h4> |
||||
<pre>protected EnumVariant(long pIEnumVARIANT)</pre> |
||||
</li> |
||||
</ul> |
||||
<a name="EnumVariant-com.jacob.com.Dispatch-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>EnumVariant</h4> |
||||
<pre>public EnumVariant(<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> disp)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>disp</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="hasMoreElements--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>hasMoreElements</h4> |
||||
<pre>public boolean hasMoreElements()</pre> |
||||
<div class="block">Implements java.util.Enumeration</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> |
||||
<dd><code>hasMoreElements</code> in interface <code>java.util.Enumeration<<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>></code></dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>boolean true if there are more elements in this enumeration</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="nextElement--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>nextElement</h4> |
||||
<pre>public <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> nextElement()</pre> |
||||
<div class="block">Implements java.util.Enumeration</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> |
||||
<dd><code>nextElement</code> in interface <code>java.util.Enumeration<<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>></code></dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>next element in the enumeration</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Next--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Next</h4> |
||||
<pre>@Deprecated |
||||
public <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> Next()</pre> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">use nextElement() instead</span></div> |
||||
<div class="block">Get next element in collection or null if at end</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Variant that is next in the collection</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Next-com.jacob.com.Variant:A-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Next</h4> |
||||
<pre>public int Next(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] receiverArray)</pre> |
||||
<div class="block">This should be private and wrapped to protect JNI layer.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>receiverArray</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Returns the next variant object pointer as an int from windows |
||||
layer</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Skip-int-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Skip</h4> |
||||
<pre>public void Skip(int count)</pre> |
||||
<div class="block">This should be private and wrapped to protect JNI layer.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>count</code> - number to skip</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="Reset--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>Reset</h4> |
||||
<pre>public void Reset()</pre> |
||||
<div class="block">This should be private and wrapped to protect JNI layer</div> |
||||
</li> |
||||
</ul> |
||||
<a name="finalize--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>finalize</h4> |
||||
<pre>protected void finalize()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>finalize</code> in class <code>java.lang.Object</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="safeRelease--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>safeRelease</h4> |
||||
<pre>public void safeRelease()</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">JacobObject</a></code></span></div> |
||||
<div class="block">Finalizers call this method. This method should release any COM data |
||||
structures in a way that it can be called multiple times. This can happen |
||||
if someone manually calls this and then a finalizer calls it.</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">safeRelease</a></code> in class <code><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/EnumVariant.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/EnumVariant.html" target="_top">Frames</a></li> |
||||
<li><a href="EnumVariant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,402 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>InvocationProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="InvocationProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":6,"i2":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],4:["t3","Abstract Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/InvocationProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/InvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class InvocationProxy" class="title">Class InvocationProxy</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.InvocationProxy</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">ActiveXInvocationProxy</a>, <a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">InvocationProxyAllVariants</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public abstract class <span class="typeNameLabel">InvocationProxy</span> |
||||
extends java.lang.Object</pre> |
||||
<dl> |
||||
<dt><span class="simpleTagLabel">Version:</span></dt> |
||||
<dd>$Id$</dd> |
||||
<dt><span class="simpleTagLabel">Author:</span></dt> |
||||
<dd>joe |
||||
|
||||
DispatchEvents wraps this class around any event handlers before making the |
||||
JNI call that sets up the link with EventProxy. This means that |
||||
EventProxy.cpp just calls invoke(String,Variant[]) against the instance of |
||||
this class. Then this class does reflection against the event listener to |
||||
call the actual event methods. The event methods can return void or return a |
||||
Variant. Any value returned will be passed back to the calling windows module |
||||
by the Jacob JNI layer. |
||||
<p> |
||||
|
||||
The void returning signature is the standard legacy signature. The Variant |
||||
returning signature was added in 1.10 to support event handlers returning |
||||
values.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected java.lang.Object</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxy.html#mTargetObject">mTargetObject</a></span></code> |
||||
<div class="block">the object we will try and forward to.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier</th> |
||||
<th class="colLast" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxy.html#InvocationProxy--">InvocationProxy</a></span>()</code> |
||||
<div class="block">dummy constructor for subclasses that don't actually wrap anything and |
||||
just want to override the invoke() method</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t3" class="tableTab"><span><a href="javascript:show(4);">Abstract Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxy.html#getVariant--">getVariant</a></span>()</code> |
||||
<div class="block">used by EventProxy.cpp to create variant objects in the right thread</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>abstract <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> |
||||
<div class="block">The method actually invoked by EventProxy.cpp.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxy.html#setTarget-java.lang.Object-">setTarget</a></span>(java.lang.Object pTargetObject)</code> |
||||
<div class="block">Sets the target for this InvocationProxy.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="mTargetObject"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>mTargetObject</h4> |
||||
<pre>protected java.lang.Object mTargetObject</pre> |
||||
<div class="block">the object we will try and forward to.</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="InvocationProxy--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>InvocationProxy</h4> |
||||
<pre>protected InvocationProxy()</pre> |
||||
<div class="block">dummy constructor for subclasses that don't actually wrap anything and |
||||
just want to override the invoke() method</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="invoke-java.lang.String-com.jacob.com.Variant:A-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>invoke</h4> |
||||
<pre>public abstract <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> invoke(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</pre> |
||||
<div class="block">The method actually invoked by EventProxy.cpp. The method name is |
||||
calculated by the underlying JNI code from the MS windows Callback |
||||
function name. The method is assumed to take an array of Variant objects. |
||||
The method may return a Variant or be a void. Those are the only two |
||||
options that will not blow up. |
||||
<p> |
||||
Subclasses that override this should make sure mTargetObject is not null |
||||
before processing.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>methodName</code> - name of method in mTargetObject we will invoke</dd> |
||||
<dd><code>targetParameters</code> - Variant[] that is the single parameter to the method</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an object that will be returned to the com event caller</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getVariant--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getVariant</h4> |
||||
<pre>public <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> getVariant()</pre> |
||||
<div class="block">used by EventProxy.cpp to create variant objects in the right thread</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Variant object that will be used by the COM layer</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="setTarget-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>setTarget</h4> |
||||
<pre>public void setTarget(java.lang.Object pTargetObject)</pre> |
||||
<div class="block">Sets the target for this InvocationProxy.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>pTargetObject</code> - </dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if target is not publicly accessible</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/InvocationProxy.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/InvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,331 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>InvocationProxyAllVariants (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="InvocationProxyAllVariants (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/InvocationProxyAllVariants.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/InvocationProxyAllVariants.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxyAllVariants.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.InvocationProxy">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class InvocationProxyAllVariants" class="title">Class InvocationProxyAllVariants</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">com.jacob.com.InvocationProxy</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.InvocationProxyAllVariants</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">InvocationProxyAllVariants</span> |
||||
extends <a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></pre> |
||||
<div class="block">This class acts as a proxy between the windows event callback mechanism and |
||||
the Java classes that are looking for events. It assumes that all of the Java |
||||
classes that are looking for events implement methods with the same names as |
||||
the windows events and that the implemented methods accept an array of |
||||
variant objects. The methods can return void or a Variant that will be |
||||
returned to the calling layer. All Event methods that will be recognized by |
||||
InvocationProxyAllEvents have the signature |
||||
|
||||
<code> void eventMethodName(Variant[])</code> or |
||||
<code> Variant eventMethodName(Variant[])</code></div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.com.jacob.com.InvocationProxy"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></h3> |
||||
<code><a href="../../../com/jacob/com/InvocationProxy.html#mTargetObject">mTargetObject</a></code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxyAllVariants.html#InvocationProxyAllVariants--">InvocationProxyAllVariants</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/InvocationProxyAllVariants.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> |
||||
<div class="block">The method actually invoked by EventProxy.cpp.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.InvocationProxy"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></h3> |
||||
<code><a href="../../../com/jacob/com/InvocationProxy.html#getVariant--">getVariant</a>, <a href="../../../com/jacob/com/InvocationProxy.html#setTarget-java.lang.Object-">setTarget</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="InvocationProxyAllVariants--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>InvocationProxyAllVariants</h4> |
||||
<pre>public InvocationProxyAllVariants()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="invoke-java.lang.String-com.jacob.com.Variant:A-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>invoke</h4> |
||||
<pre>public <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> invoke(java.lang.String methodName, |
||||
<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</pre> |
||||
<div class="block"><span class="descfrmTypeLabel">Description copied from class: <code><a href="../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">InvocationProxy</a></code></span></div> |
||||
<div class="block">The method actually invoked by EventProxy.cpp. The method name is |
||||
calculated by the underlying JNI code from the MS windows Callback |
||||
function name. The method is assumed to take an array of Variant objects. |
||||
The method may return a Variant or be a void. Those are the only two |
||||
options that will not blow up. |
||||
<p> |
||||
Subclasses that override this should make sure mTargetObject is not null |
||||
before processing.</div> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> |
||||
<dd><code><a href="../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></code> in class <code><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></dd> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>methodName</code> - name of method in mTargetObject we will invoke</dd> |
||||
<dd><code>targetParameters</code> - Variant[] that is the single parameter to the method</dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>an object that will be returned to the com event caller</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/InvocationProxyAllVariants.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/InvocationProxyAllVariants.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxyAllVariants.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.InvocationProxy">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,297 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>JacobException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="JacobException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobException.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class JacobException" class="title">Class JacobException</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Throwable</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Exception</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.RuntimeException</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.JacobException</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.io.Serializable</dd> |
||||
</dl> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a>, <a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">NotImplementedException</a>, <a href="../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">WrongThreadException</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">JacobException</span> |
||||
extends java.lang.RuntimeException</pre> |
||||
<div class="block">The parent class of all Jacob exceptions. They all used to be based off of |
||||
RuntimeException or ComException but it was decided to base them all off of |
||||
one owned by this project.</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../serialized-form.html#com.jacob.com.JacobException">Serialized Form</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobException.html#JacobException--">JacobException</a></span>()</code> |
||||
<div class="block">Default constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobException.html#JacobException-java.lang.String-">JacobException</a></span>(java.lang.String message)</code> |
||||
<div class="block">standard constructor</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Throwable</h3> |
||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="JacobException--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>JacobException</h4> |
||||
<pre>public JacobException()</pre> |
||||
<div class="block">Default constructor. Calls super with a "No Message Provided" string</div> |
||||
</li> |
||||
</ul> |
||||
<a name="JacobException-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>JacobException</h4> |
||||
<pre>public JacobException(java.lang.String message)</pre> |
||||
<div class="block">standard constructor</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>message</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobException.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,378 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>JacobObject (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="JacobObject (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":41,"i2":41,"i3":9,"i4":10}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobObject.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobObject.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobObject.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class JacobObject" class="title">Class JacobObject</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.JacobObject</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a>, <a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a>, <a href="../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">DispatchProxy</a>, <a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a>, <a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a>, <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">JacobObject</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">The superclass of all Jacob objects. It is used to create a standard API |
||||
framework and to facilitate memory management for Java and COM memory |
||||
elements. |
||||
<p> |
||||
All instances of this class and subclasses are automatically managed by the |
||||
ROT. This means the ROT cannot be a subclass of JacobObject. |
||||
<p> |
||||
All COM object created by JACOB extend this class so that we can |
||||
automatically release them when the thread is detached from COM - if we leave |
||||
it to the finalizer it will call the release from another thread, which may |
||||
result in a segmentation violation.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#JacobObject--">JacobObject</a></span>()</code> |
||||
<div class="block">Standard constructor that adds this JacobObject to the memory management |
||||
pool.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#debug-java.lang.String-">debug</a></span>(java.lang.String istrMessage)</code> |
||||
<div class="block">Very basic debugging function.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#getBuildDate--">getBuildDate</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">use JacobReleaseInfo.getBuildDate() instead.</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#getBuildVersion--">getBuildVersion</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">use JacobReleaseInfo.getBuildVersion() instead.</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>protected static boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#isDebugEnabled--">isDebugEnabled</a></span>()</code> </td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobObject.html#safeRelease--">safeRelease</a></span>()</code> |
||||
<div class="block">Finalizers call this method.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="JacobObject--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>JacobObject</h4> |
||||
<pre>public JacobObject()</pre> |
||||
<div class="block">Standard constructor that adds this JacobObject to the memory management |
||||
pool.</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="safeRelease--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>safeRelease</h4> |
||||
<pre>public void safeRelease()</pre> |
||||
<div class="block">Finalizers call this method. This method should release any COM data |
||||
structures in a way that it can be called multiple times. This can happen |
||||
if someone manually calls this and then a finalizer calls it.</div> |
||||
</li> |
||||
</ul> |
||||
<a name="isDebugEnabled--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>isDebugEnabled</h4> |
||||
<pre>protected static boolean isDebugEnabled()</pre> |
||||
</li> |
||||
</ul> |
||||
<a name="getBuildDate--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getBuildDate</h4> |
||||
<pre>@Deprecated |
||||
public static java.lang.String getBuildDate()</pre> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">use JacobReleaseInfo.getBuildDate() instead.</span></div> |
||||
<div class="block">Loads JacobVersion.Properties and returns the value of version in it</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String value of version in JacobVersion.Properties or "" if none</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getBuildVersion--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getBuildVersion</h4> |
||||
<pre>@Deprecated |
||||
public static java.lang.String getBuildVersion()</pre> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">use JacobReleaseInfo.getBuildVersion() instead.</span></div> |
||||
<div class="block">Loads JacobVersion.Properties and returns the value of version in it</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String value of version in JacobVersion.Properties or "" if none</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="debug-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>debug</h4> |
||||
<pre>protected static void debug(java.lang.String istrMessage)</pre> |
||||
<div class="block">Very basic debugging function.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>istrMessage</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobObject.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobObject.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobObject.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,301 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>JacobReleaseInfo (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="JacobReleaseInfo (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobReleaseInfo.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobReleaseInfo.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobReleaseInfo.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class JacobReleaseInfo" class="title">Class JacobReleaseInfo</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.JacobReleaseInfo</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">JacobReleaseInfo</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">An interface to the version properties file. This code was removed from |
||||
JacobObject because it doesn't belong there.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobReleaseInfo.html#JacobReleaseInfo--">JacobReleaseInfo</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobReleaseInfo.html#getBuildDate--">getBuildDate</a></span>()</code> |
||||
<div class="block">loads PROPERT_FILE_NAME and returns the value of version in it</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/JacobReleaseInfo.html#getBuildVersion--">getBuildVersion</a></span>()</code> |
||||
<div class="block">loads PROPERT_FILE_NAME and returns the value of version in it</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="JacobReleaseInfo--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>JacobReleaseInfo</h4> |
||||
<pre>public JacobReleaseInfo()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="getBuildDate--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getBuildDate</h4> |
||||
<pre>public static java.lang.String getBuildDate()</pre> |
||||
<div class="block">loads PROPERT_FILE_NAME and returns the value of version in it</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String value of version in PROPERT_FILE_NAME or "" if none</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getBuildVersion--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>getBuildVersion</h4> |
||||
<pre>public static java.lang.String getBuildVersion()</pre> |
||||
<div class="block">loads PROPERT_FILE_NAME and returns the value of version in it</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>String value of version in PROPERT_FILE_NAME or "" if none</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/JacobReleaseInfo.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/JacobReleaseInfo.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobReleaseInfo.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,529 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>LibraryLoader (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="LibraryLoader (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9,"i2":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/LibraryLoader.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/LibraryLoader.html" target="_top">Frames</a></li> |
||||
<li><a href="LibraryLoader.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class LibraryLoader" class="title">Class LibraryLoader</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.LibraryLoader</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public final class <span class="typeNameLabel">LibraryLoader</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">Utility class to centralize the way in which the jacob JNI library is loaded. |
||||
<p> |
||||
|
||||
This supports defining the path or library name using system properties or a |
||||
custom resource file. If desired, jacob can auto-detect the correct version |
||||
of the DLL for 32 or 64 bit windows, as long as you have named them |
||||
differently. |
||||
|
||||
<ol> |
||||
<li> If system property <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_PATH"><code>JACOB_DLL_PATH</code></a> is defined, the file located |
||||
there will be loaded as the jacob dll using System.load(). </li> |
||||
|
||||
<li> If system property <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME"><code>JACOB_DLL_NAME</code></a> is defined, the file located |
||||
there will be loaded as the jacob dll. </li> |
||||
<li> If system property <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X86"><code>JACOB_DLL_NAME_X86</code></a> and |
||||
<a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X64"><code>JACOB_DLL_NAME_X64</code></a> are defined, the file located there will be |
||||
loaded as the jacob dll, depending on the version of Windows. </li> |
||||
|
||||
<li> If <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME"><code>JACOB_DLL_NAME</code></a> is defined in the |
||||
<code>com.jacob.com.JacobLibraryLoader</code> resource file, the specified dll |
||||
will be loaded from the <code>java.library.path</code>. </li> |
||||
<li> If <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X86"><code>JACOB_DLL_NAME_X86</code></a> and <a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X64"><code>JACOB_DLL_NAME_X64</code></a> are |
||||
defined in the <code>com.jacob.com.JacobLibraryLoader</code> resource file, the |
||||
specified dll will be loaded from the <code>java.library.path</code>, depending |
||||
on the version of Windows. </li> |
||||
|
||||
<li> If none of the above are true, the default is to load the library named |
||||
"jacob-<version>-<arch>" (or |
||||
"jacob-<version>-<arch&rt;.dll") from the <code>java.library.path</code>. |
||||
</li> |
||||
</ol> |
||||
|
||||
The standard behavior for most applications is that <code>LoadLibrary()</code> |
||||
will be called to load the dll. <code>LoadLibary()</code> searches directories |
||||
specified in the variable <code>java.library.path</code>. This is why most test |
||||
cases specify -Djava.library.path in their command line arguments. |
||||
<p> |
||||
JACOB_DLL_PATH submitted sourceforge ticket 1493647 Added 1.11 <br> |
||||
JACOB_DLL_NAME, JACOB_DLL_NAME_32, JACOB_DLL_NAME_64 submitted sourceforge |
||||
ticket 1845039 Added 1.14M7</div> |
||||
<dl> |
||||
<dt><span class="simpleTagLabel">Author:</span></dt> |
||||
<dd>Scott Dickerson (sjd78), Jason Smith</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#DLL_NAME_MODIFIER_32_BIT">DLL_NAME_MODIFIER_32_BIT</a></span></code> |
||||
<div class="block">Appended to "jacob" when building DLL name This string must EXACTLY match |
||||
the string in the build.xml file</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#DLL_NAME_MODIFIER_64_BIT">DLL_NAME_MODIFIER_64_BIT</a></span></code> |
||||
<div class="block">Appended to "jacob" when building DLL name This string must EXACTLY match |
||||
the string in the build.xml file</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME">JACOB_DLL_NAME</a></span></code> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob').</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X64">JACOB_DLL_NAME_X64</a></span></code> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob'), 64 |
||||
bit windows.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X86">JACOB_DLL_NAME_X86</a></span></code> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob'), 32 |
||||
bit windows.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#JACOB_DLL_PATH">JACOB_DLL_PATH</a></span></code> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.path</tt>) that may |
||||
contain an absolute path to the JNI library.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#LibraryLoader--">LibraryLoader</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#getPreferredDLLName--">getPreferredDLLName</a></span>()</code> |
||||
<div class="block">Developer note: This method MUST be synchronized with the DLL names |
||||
created as part of the build process in build.xml</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#loadJacobLibrary--">loadJacobLibrary</a></span>()</code> |
||||
<div class="block">Load the jacob dll either from an absolute path or by a library name, |
||||
both of which may be defined in various ways.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>protected static boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/LibraryLoader.html#shouldLoad32Bit--">shouldLoad32Bit</a></span>()</code> |
||||
<div class="block">Detects whether this is a 32-bit JVM.</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="JACOB_DLL_PATH"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>JACOB_DLL_PATH</h4> |
||||
<pre>public static final java.lang.String JACOB_DLL_PATH</pre> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.path</tt>) that may |
||||
contain an absolute path to the JNI library.</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.JACOB_DLL_PATH">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="JACOB_DLL_NAME"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>JACOB_DLL_NAME</h4> |
||||
<pre>public static final java.lang.String JACOB_DLL_NAME</pre> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob').</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.JACOB_DLL_NAME">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="JACOB_DLL_NAME_X86"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>JACOB_DLL_NAME_X86</h4> |
||||
<pre>public static final java.lang.String JACOB_DLL_NAME_X86</pre> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob'), 32 |
||||
bit windows.</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.JACOB_DLL_NAME_X86">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="JACOB_DLL_NAME_X64"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>JACOB_DLL_NAME_X64</h4> |
||||
<pre>public static final java.lang.String JACOB_DLL_NAME_X64</pre> |
||||
<div class="block">Name of system property (currently <tt>jacob.dll.name</tt>) that may |
||||
contain an alternate name for the JNI library (default is 'jacob'), 64 |
||||
bit windows.</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.JACOB_DLL_NAME_X64">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="DLL_NAME_MODIFIER_32_BIT"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>DLL_NAME_MODIFIER_32_BIT</h4> |
||||
<pre>public static final java.lang.String DLL_NAME_MODIFIER_32_BIT</pre> |
||||
<div class="block">Appended to "jacob" when building DLL name This string must EXACTLY match |
||||
the string in the build.xml file</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.DLL_NAME_MODIFIER_32_BIT">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="DLL_NAME_MODIFIER_64_BIT"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>DLL_NAME_MODIFIER_64_BIT</h4> |
||||
<pre>public static final java.lang.String DLL_NAME_MODIFIER_64_BIT</pre> |
||||
<div class="block">Appended to "jacob" when building DLL name This string must EXACTLY match |
||||
the string in the build.xml file</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../constant-values.html#com.jacob.com.LibraryLoader.DLL_NAME_MODIFIER_64_BIT">Constant Field Values</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="LibraryLoader--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>LibraryLoader</h4> |
||||
<pre>public LibraryLoader()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="loadJacobLibrary--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>loadJacobLibrary</h4> |
||||
<pre>public static void loadJacobLibrary()</pre> |
||||
<div class="block">Load the jacob dll either from an absolute path or by a library name, |
||||
both of which may be defined in various ways.</div> |
||||
<dl> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.UnsatisfiedLinkError</code> - if the library does not exist.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getPreferredDLLName--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getPreferredDLLName</h4> |
||||
<pre>public static java.lang.String getPreferredDLLName()</pre> |
||||
<div class="block">Developer note: This method MUST be synchronized with the DLL names |
||||
created as part of the build process in build.xml |
||||
<p> |
||||
The DLL name is "jacob\<PLATFORM\>.release"</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>the preferred name of the DLL adjusted for this platform and |
||||
version without the ".dll" extension</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="shouldLoad32Bit--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>shouldLoad32Bit</h4> |
||||
<pre>protected static boolean shouldLoad32Bit()</pre> |
||||
<div class="block">Detects whether this is a 32-bit JVM.</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd><code>true</code> if this is a 32-bit JVM.</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/LibraryLoader.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/LibraryLoader.html" target="_top">Frames</a></li> |
||||
<li><a href="LibraryLoader.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,307 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>MainSTA (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="MainSTA (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/MainSTA.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/MainSTA.html" target="_top">Frames</a></li> |
||||
<li><a href="MainSTA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li><a href="#nested.classes.inherited.from.class.java.lang.Thread">Nested</a> | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.STA">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.com.jacob.com.STA">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class MainSTA" class="title">Class MainSTA</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Thread</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com">com.jacob.com.STA</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.MainSTA</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.lang.Runnable</dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">MainSTA</span> |
||||
extends <a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></pre> |
||||
<div class="block">We provide our own main sta thread to avoid COM tagging a random thread as |
||||
the main STA - this is the thread in which all Apartment threaded components |
||||
will be created if the client chooses an MTA threading model for the java |
||||
side of the app.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== NESTED CLASS SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="nested.class.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Nested Class Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="nested.classes.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Nested classes/interfaces inherited from class java.lang.Thread</h3> |
||||
<code>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.com.jacob.com.STA"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class com.jacob.com.<a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></h3> |
||||
<code><a href="../../../com/jacob/com/STA.html#threadID">threadID</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class java.lang.Thread</h3> |
||||
<code>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/MainSTA.html#MainSTA--">MainSTA</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.com.jacob.com.STA"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class com.jacob.com.<a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></h3> |
||||
<code><a href="../../../com/jacob/com/STA.html#doMessagePump--">doMessagePump</a>, <a href="../../../com/jacob/com/STA.html#OnInit--">OnInit</a>, <a href="../../../com/jacob/com/STA.html#OnQuit--">OnQuit</a>, <a href="../../../com/jacob/com/STA.html#quit--">quit</a>, <a href="../../../com/jacob/com/STA.html#quitMessagePump--">quitMessagePump</a>, <a href="../../../com/jacob/com/STA.html#run--">run</a></code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Thread</h3> |
||||
<code>activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="MainSTA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>MainSTA</h4> |
||||
<pre>public MainSTA()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/MainSTA.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/MainSTA.html" target="_top">Frames</a></li> |
||||
<li><a href="MainSTA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li><a href="#nested.classes.inherited.from.class.java.lang.Thread">Nested</a> | </li> |
||||
<li><a href="#fields.inherited.from.class.com.jacob.com.STA">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.com.jacob.com.STA">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,280 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>NotImplementedException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="NotImplementedException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/NotImplementedException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/ROT.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/NotImplementedException.html" target="_top">Frames</a></li> |
||||
<li><a href="NotImplementedException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class NotImplementedException" class="title">Class NotImplementedException</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Throwable</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Exception</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.RuntimeException</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">com.jacob.com.JacobException</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.NotImplementedException</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.io.Serializable</dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">NotImplementedException</span> |
||||
extends <a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></pre> |
||||
<div class="block">Thrown by java APIs that are not implemented either because they were never |
||||
implemented or because they are being deprecated This is a subclass of |
||||
ComException so callers can still just catch ComException.</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../serialized-form.html#com.jacob.com.NotImplementedException">Serialized Form</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/NotImplementedException.html#NotImplementedException-java.lang.String-">NotImplementedException</a></span>(java.lang.String description)</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Throwable</h3> |
||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="NotImplementedException-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>NotImplementedException</h4> |
||||
<pre>public NotImplementedException(java.lang.String description)</pre> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>description</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/NotImplementedException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/ROT.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/NotImplementedException.html" target="_top">Frames</a></li> |
||||
<li><a href="NotImplementedException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,497 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>ROT (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="ROT (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":41}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"],32:["t6","Deprecated Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ROT.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ROT.html" target="_top">Frames</a></li> |
||||
<li><a href="ROT.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class ROT" class="title">Class ROT</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.ROT</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public abstract class <span class="typeNameLabel">ROT</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">The Running Object Table (ROT) maps each thread to a collection of all the |
||||
JacobObjects that were created in that thread. It always operates on the |
||||
current thread so all the methods are static and they implicitly get the |
||||
current thread. |
||||
<p> |
||||
The clearObjects method is used to release all the COM objects created by |
||||
Jacob in the current thread prior to uninitializing COM for that thread. |
||||
<p> |
||||
Prior to 1.9, manual garbage collection was the only option in Jacob, but |
||||
from 1.9 onward, setting the com.jacob.autogc system property allows the |
||||
objects referenced by the ROT to be automatically GCed. Automatic GC may be |
||||
preferable in systems with heavy event callbacks. |
||||
<p> |
||||
Is [ 1116101 ] jacob-msg 0284 relevant???</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static java.lang.Boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#INCLUDE_ALL_CLASSES_IN_ROT">INCLUDE_ALL_CLASSES_IN_ROT</a></span></code> |
||||
<div class="block">If the code is ran from an applet that is called from javascript the Java |
||||
Plugin does not give full permissions to the code and thus System |
||||
properties cannot be accessed.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected static java.lang.String</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#PUT_IN_ROT_SUFFIX">PUT_IN_ROT_SUFFIX</a></span></code> |
||||
<div class="block">Suffix added to class name to make up property name that determines if |
||||
this object should be stored in the ROT.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#USE_AUTOMATIC_GARBAGE_COLLECTION">USE_AUTOMATIC_GARBAGE_COLLECTION</a></span></code> |
||||
<div class="block">Manual garbage collection was the only option pre 1.9 Can staticly cache |
||||
the results because only one value and we don't let it change during a |
||||
run</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#ROT--">ROT</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span><span id="t6" class="tableTab"><span><a href="javascript:show(32);">Deprecated Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#addObject-com.jacob.com.JacobObject-">addObject</a></span>(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block">Adds an object to the HashMap for the current thread.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>protected static java.util.Map<<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#addThread--">addThread</a></span>()</code> |
||||
<div class="block">adds a new thread storage area to rot</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#clearObjects--">clearObjects</a></span>()</code> |
||||
<div class="block">Iterates across all of the entries in the Hashmap in the rot that |
||||
corresponds to this thread.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>protected static java.util.Map<<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#getThreadObjects-boolean-">getThreadObjects</a></span>(boolean createIfDoesNotExist)</code> |
||||
<div class="block">Returns the pool for this thread if it exists.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/ROT.html#removeObject-com.jacob.com.JacobObject-">removeObject</a></span>(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. <br> |
||||
This will remove an object from the ROT <br> |
||||
This does not need to be synchronized because only the rot |
||||
modification related methods need to synchronized. Each |
||||
individual map is only modified in a single thread.</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="USE_AUTOMATIC_GARBAGE_COLLECTION"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>USE_AUTOMATIC_GARBAGE_COLLECTION</h4> |
||||
<pre>protected static final boolean USE_AUTOMATIC_GARBAGE_COLLECTION</pre> |
||||
<div class="block">Manual garbage collection was the only option pre 1.9 Can staticly cache |
||||
the results because only one value and we don't let it change during a |
||||
run</div> |
||||
</li> |
||||
</ul> |
||||
<a name="INCLUDE_ALL_CLASSES_IN_ROT"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>INCLUDE_ALL_CLASSES_IN_ROT</h4> |
||||
<pre>protected static final java.lang.Boolean INCLUDE_ALL_CLASSES_IN_ROT</pre> |
||||
<div class="block">If the code is ran from an applet that is called from javascript the Java |
||||
Plugin does not give full permissions to the code and thus System |
||||
properties cannot be accessed. They can be accessed at class |
||||
initialization time. |
||||
|
||||
The default behavior is to include all classes in the ROT, setting a |
||||
boolean here to indicate this prevents a call to System.getProperty as |
||||
part of the general call flow.</div> |
||||
</li> |
||||
</ul> |
||||
<a name="PUT_IN_ROT_SUFFIX"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>PUT_IN_ROT_SUFFIX</h4> |
||||
<pre>protected static java.lang.String PUT_IN_ROT_SUFFIX</pre> |
||||
<div class="block">Suffix added to class name to make up property name that determines if |
||||
this object should be stored in the ROT. This 1.13 "feature" makes it |
||||
possible to cause VariantViaEvent objects to not be added to the ROT in |
||||
event callbacks. |
||||
<p> |
||||
We don't have a static for the actual property because there is a |
||||
different property for each class that may make use of this feature.</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="ROT--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>ROT</h4> |
||||
<pre>public ROT()</pre> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="addThread--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>addThread</h4> |
||||
<pre>protected static java.util.Map<<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String> addThread()</pre> |
||||
<div class="block">adds a new thread storage area to rot</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Map corresponding to the thread that this call was made in</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="getThreadObjects-boolean-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>getThreadObjects</h4> |
||||
<pre>protected static java.util.Map<<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String> getThreadObjects(boolean createIfDoesNotExist)</pre> |
||||
<div class="block">Returns the pool for this thread if it exists. can create a new one if |
||||
you wish by passing in TRUE</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>createIfDoesNotExist</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Map the collection that holds the objects created in the current |
||||
thread</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="clearObjects--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>clearObjects</h4> |
||||
<pre>protected static void clearObjects()</pre> |
||||
<div class="block">Iterates across all of the entries in the Hashmap in the rot that |
||||
corresponds to this thread. This calls safeRelease() on each entry and |
||||
then clears the map when done and removes it from the rot. All traces of |
||||
this thread's objects will disappear. This is called by COMThread in the |
||||
tear down and provides a synchronous way of releasing memory</div> |
||||
</li> |
||||
</ul> |
||||
<a name="removeObject-com.jacob.com.JacobObject-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>removeObject</h4> |
||||
<pre>@Deprecated |
||||
protected static void removeObject(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</pre> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> <span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. <br> |
||||
This will remove an object from the ROT <br> |
||||
This does not need to be synchronized because only the rot |
||||
modification related methods need to synchronized. Each |
||||
individual map is only modified in a single thread.</span></div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>o</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="addObject-com.jacob.com.JacobObject-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>addObject</h4> |
||||
<pre>protected static void addObject(<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</pre> |
||||
<div class="block">Adds an object to the HashMap for the current thread. <br> |
||||
<p> |
||||
This method does not need to be threaded because the only concurrent |
||||
modification risk is on the hash map that contains all of the thread |
||||
related hash maps. The individual thread related maps are only used on a |
||||
per thread basis so there isn't a locking issue. |
||||
<p> |
||||
In addition, this method cannot be threaded because it calls |
||||
ComThread.InitMTA. The ComThread object has some methods that call ROT so |
||||
we could end up deadlocked. This method should be safe without the |
||||
synchronization because the ROT works on per thread basis and the methods |
||||
that add threads and remove thread related entries are all synchronized</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>o</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/ROT.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/ROT.html" target="_top">Frames</a></li> |
||||
<li><a href="ROT.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,454 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>STA (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="STA (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10}; |
||||
var tabs = {65535:["t0","All Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/STA.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/STA.html" target="_top">Frames</a></li> |
||||
<li><a href="STA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li><a href="#nested.classes.inherited.from.class.java.lang.Thread">Nested</a> | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class STA" class="title">Class STA</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Thread</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.STA</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.lang.Runnable</dd> |
||||
</dl> |
||||
<dl> |
||||
<dt>Direct Known Subclasses:</dt> |
||||
<dd><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">STA</span> |
||||
extends java.lang.Thread</pre> |
||||
<div class="block">A class that implements a Single Threaded Apartment. Users will subclass this |
||||
and override OnInit() and OnQuit() where they will create and destroy a COM |
||||
component that wants to run in an STA other than the main STA.</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== NESTED CLASS SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="nested.class.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Nested Class Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="nested.classes.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Nested classes/interfaces inherited from class java.lang.Thread</h3> |
||||
<code>java.lang.Thread.State, java.lang.Thread.UncaughtExceptionHandler</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- =========== FIELD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation"> |
||||
<caption><span>Fields</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#threadID">threadID</a></span></code> |
||||
<div class="block">referenced by STA.cpp</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="fields.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Fields inherited from class java.lang.Thread</h3> |
||||
<code>MAX_PRIORITY, MIN_PRIORITY, NORM_PRIORITY</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#STA--">STA</a></span>()</code> |
||||
<div class="block">constructor for STA</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#doMessagePump--">doMessagePump</a></span>()</code> |
||||
<div class="block">run a message pump for the main STA</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>boolean</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#OnInit--">OnInit</a></span>()</code> |
||||
<div class="block">Override this method to create and initialize any COM component that you |
||||
want to run in this thread.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#OnQuit--">OnQuit</a></span>()</code> |
||||
<div class="block">Override this method to destroy any resource before the thread exits and |
||||
COM in uninitialized</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#quit--">quit</a></span>()</code> |
||||
<div class="block">calls quitMessagePump</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#quitMessagePump--">quitMessagePump</a></span>()</code> |
||||
<div class="block">quit message pump for the main STA</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/STA.html#run--">run</a></span>()</code> </td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Thread"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Thread</h3> |
||||
<code>activeCount, checkAccess, clone, countStackFrames, currentThread, destroy, dumpStack, enumerate, getAllStackTraces, getContextClassLoader, getDefaultUncaughtExceptionHandler, getId, getName, getPriority, getStackTrace, getState, getThreadGroup, getUncaughtExceptionHandler, holdsLock, interrupt, interrupted, isAlive, isDaemon, isInterrupted, join, join, join, resume, setContextClassLoader, setDaemon, setDefaultUncaughtExceptionHandler, setName, setPriority, setUncaughtExceptionHandler, sleep, sleep, start, stop, stop, suspend, toString, yield</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ FIELD DETAIL =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="field.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Field Detail</h3> |
||||
<a name="threadID"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>threadID</h4> |
||||
<pre>public int threadID</pre> |
||||
<div class="block">referenced by STA.cpp</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="STA--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>STA</h4> |
||||
<pre>public STA()</pre> |
||||
<div class="block">constructor for STA</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="run--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>run</h4> |
||||
<pre>public void run()</pre> |
||||
<dl> |
||||
<dt><span class="overrideSpecifyLabel">Specified by:</span></dt> |
||||
<dd><code>run</code> in interface <code>java.lang.Runnable</code></dd> |
||||
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt> |
||||
<dd><code>run</code> in class <code>java.lang.Thread</code></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="OnInit--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>OnInit</h4> |
||||
<pre>public boolean OnInit()</pre> |
||||
<div class="block">Override this method to create and initialize any COM component that you |
||||
want to run in this thread. If anything fails, return false to terminate |
||||
the thread.</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>always returns true</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="OnQuit--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>OnQuit</h4> |
||||
<pre>public void OnQuit()</pre> |
||||
<div class="block">Override this method to destroy any resource before the thread exits and |
||||
COM in uninitialized</div> |
||||
</li> |
||||
</ul> |
||||
<a name="quit--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>quit</h4> |
||||
<pre>public void quit()</pre> |
||||
<div class="block">calls quitMessagePump</div> |
||||
</li> |
||||
</ul> |
||||
<a name="doMessagePump--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>doMessagePump</h4> |
||||
<pre>public void doMessagePump()</pre> |
||||
<div class="block">run a message pump for the main STA</div> |
||||
</li> |
||||
</ul> |
||||
<a name="quitMessagePump--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>quitMessagePump</h4> |
||||
<pre>public void quitMessagePump()</pre> |
||||
<div class="block">quit message pump for the main STA</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/STA.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/STA.html" target="_top">Frames</a></li> |
||||
<li><a href="STA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li><a href="#nested.classes.inherited.from.class.java.lang.Thread">Nested</a> | </li> |
||||
<li><a href="#field.summary">Field</a> | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li><a href="#field.detail">Field</a> | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,411 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>VariantUtilities (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="VariantUtilities (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
var methods = {"i0":9,"i1":9,"i2":9,"i3":9,"i4":9,"i5":9,"i6":9}; |
||||
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],8:["t4","Concrete Methods"]}; |
||||
var altColor = "altColor"; |
||||
var rowColor = "rowColor"; |
||||
var tableTab = "tableTab"; |
||||
var activeTableTab = "activeTableTab"; |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/VariantUtilities.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/VariantUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class VariantUtilities" class="title">Class VariantUtilities</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.VariantUtilities</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<hr> |
||||
<br> |
||||
<pre>public final class <span class="typeNameLabel">VariantUtilities</span> |
||||
extends java.lang.Object</pre> |
||||
<div class="block">A utility class used to convert between Java objects and Variants</div> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation"> |
||||
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd"> </span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd"> </span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd"> </span></span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tr id="i0" class="altColor"> |
||||
<td class="colFirst"><code>protected static <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#objectsToVariants-java.lang.Object:A-">objectsToVariants</a></span>(java.lang.Object[] arrayOfObjectsToBeConverted)</code> |
||||
<div class="block">converts an array of objects into an array of Variants by repeatedly |
||||
calling obj2Variant(Object)</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i1" class="rowColor"> |
||||
<td class="colFirst"><code>protected static <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#objectToVariant-java.lang.Object-">objectToVariant</a></span>(java.lang.Object objectToBeMadeIntoVariant)</code> |
||||
<div class="block">Map arguments based on msdn documentation.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i2" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#populateVariant-com.jacob.com.Variant-java.lang.Object-boolean-">populateVariant</a></span>(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> targetVariant, |
||||
java.lang.Object pValueObject, |
||||
boolean fByRef)</code> |
||||
<div class="block">Populates a variant object from a java object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i3" class="rowColor"> |
||||
<td class="colFirst"><code>static java.math.BigDecimal</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#roundToMSDecimal-java.math.BigDecimal-">roundToMSDecimal</a></span>(java.math.BigDecimal sourceDecimal)</code> |
||||
<div class="block">Rounds the scale and bit length so that it will pass |
||||
validateDecimalScaleBits().</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i4" class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#validateDecimalMinMax-java.math.BigDecimal-">validateDecimalMinMax</a></span>(java.math.BigDecimal in)</code> |
||||
<div class="block">Does any validation that couldn't have been fixed by rounding or scale |
||||
modification.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i5" class="rowColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#validateDecimalScaleAndBits-java.math.BigDecimal-">validateDecimalScaleAndBits</a></span>(java.math.BigDecimal in)</code> |
||||
<div class="block">Verifies that we have a scale 0 <= x <= 28 and now more than 96 bits of |
||||
data.</div> |
||||
</td> |
||||
</tr> |
||||
<tr id="i6" class="altColor"> |
||||
<td class="colFirst"><code>protected static java.lang.Object</code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../com/jacob/com/VariantUtilities.html#variantToObject-com.jacob.com.Variant-">variantToObject</a></span>(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> sourceData)</code> |
||||
<div class="block">Convert a JACOB Variant value to a Java object (type conversions).</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ============ METHOD DETAIL ========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Detail</h3> |
||||
<a name="populateVariant-com.jacob.com.Variant-java.lang.Object-boolean-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>populateVariant</h4> |
||||
<pre>protected static void populateVariant(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> targetVariant, |
||||
java.lang.Object pValueObject, |
||||
boolean fByRef)</pre> |
||||
<div class="block">Populates a variant object from a java object. This method attempts to |
||||
figure out the appropriate Variant type</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>targetVariant</code> - </dd> |
||||
<dd><code>pValueObject</code> - </dd> |
||||
<dd><code>fByRef</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="objectToVariant-java.lang.Object-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>objectToVariant</h4> |
||||
<pre>protected static <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> objectToVariant(java.lang.Object objectToBeMadeIntoVariant)</pre> |
||||
<div class="block">Map arguments based on msdn documentation. This method relies on the |
||||
variant constructor except for arrays.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>objectToBeMadeIntoVariant</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Variant that represents the object</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="objectsToVariants-java.lang.Object:A-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>objectsToVariants</h4> |
||||
<pre>protected static <a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] objectsToVariants(java.lang.Object[] arrayOfObjectsToBeConverted)</pre> |
||||
<div class="block">converts an array of objects into an array of Variants by repeatedly |
||||
calling obj2Variant(Object)</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>arrayOfObjectsToBeConverted</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Variant[]</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="variantToObject-com.jacob.com.Variant-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>variantToObject</h4> |
||||
<pre>protected static java.lang.Object variantToObject(<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> sourceData)</pre> |
||||
<div class="block">Convert a JACOB Variant value to a Java object (type conversions). |
||||
provided in Sourceforge feature request 959381. A fix was done to handle |
||||
byRef bug report 1607878. |
||||
<p> |
||||
Unlike other toXXX() methods, it does not do a type conversion except for |
||||
special data types (it shouldn't do any!) |
||||
<p> |
||||
Converts Variant.VariantArray types to SafeArrays</div> |
||||
<dl> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>Corresponding Java object of the type matching the Variant type.</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalStateException</code> - if no underlying windows data structure</dd> |
||||
<dd><code><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">NotImplementedException</a></code> - if unsupported conversion is requested</dd> |
||||
<dd><code><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></code> - if the calculated result was a JacobObject usually as a |
||||
result of error</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="validateDecimalScaleAndBits-java.math.BigDecimal-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>validateDecimalScaleAndBits</h4> |
||||
<pre>protected static void validateDecimalScaleAndBits(java.math.BigDecimal in)</pre> |
||||
<div class="block">Verifies that we have a scale 0 <= x <= 28 and now more than 96 bits of |
||||
data. The roundToMSDecimal method will attempt to adjust a BigDecimal to |
||||
pass this set of tests</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>in</code> - </dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if out of bounds</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="validateDecimalMinMax-java.math.BigDecimal-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>validateDecimalMinMax</h4> |
||||
<pre>protected static void validateDecimalMinMax(java.math.BigDecimal in)</pre> |
||||
<div class="block">Does any validation that couldn't have been fixed by rounding or scale |
||||
modification.</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>in</code> - The BigDecimal to be validated</dd> |
||||
<dt><span class="throwsLabel">Throws:</span></dt> |
||||
<dd><code>java.lang.IllegalArgumentException</code> - if the number is too large or too small or null</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
<a name="roundToMSDecimal-java.math.BigDecimal-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>roundToMSDecimal</h4> |
||||
<pre>public static java.math.BigDecimal roundToMSDecimal(java.math.BigDecimal sourceDecimal)</pre> |
||||
<div class="block">Rounds the scale and bit length so that it will pass |
||||
validateDecimalScaleBits(). Developers should call this method if they |
||||
really want MS Decimal and don't want to lose precision. |
||||
<p> |
||||
Changing the scale on a number that can fit in an MS Decimal can change |
||||
the number's representation enough that it will round to a number too |
||||
large to be represented by an MS VT_DECIMAL</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>sourceDecimal</code> - </dd> |
||||
<dt><span class="returnLabel">Returns:</span></dt> |
||||
<dd>BigDecimal a new big decimal that was rounded to fit in an MS |
||||
VT_DECIMAL</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/VariantUtilities.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li><a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">Next Class</span></a></li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/VariantUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.summary">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li>Constr | </li> |
||||
<li><a href="#method.detail">Method</a></li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because one or more lines are too long
@ -0,0 +1,296 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>WrongThreadException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="WrongThreadException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/WrongThreadException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li>Next Class</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/WrongThreadException.html" target="_top">Frames</a></li> |
||||
<li><a href="WrongThreadException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<!-- ======== START OF CLASS DATA ======== --> |
||||
<div class="header"> |
||||
<div class="subTitle">com.jacob.com</div> |
||||
<h2 title="Class WrongThreadException" class="title">Class WrongThreadException</h2> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Object</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Throwable</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.Exception</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>java.lang.RuntimeException</li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">com.jacob.com.JacobException</a></li> |
||||
<li> |
||||
<ul class="inheritance"> |
||||
<li>com.jacob.com.WrongThreadException</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
<div class="description"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<dl> |
||||
<dt>All Implemented Interfaces:</dt> |
||||
<dd>java.io.Serializable</dd> |
||||
</dl> |
||||
<hr> |
||||
<br> |
||||
<pre>public class <span class="typeNameLabel">WrongThreadException</span> |
||||
extends <a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></pre> |
||||
<div class="block">thrown in util.cpp</div> |
||||
<dl> |
||||
<dt><span class="seeLabel">See Also:</span></dt> |
||||
<dd><a href="../../../serialized-form.html#com.jacob.com.WrongThreadException">Serialized Form</a></dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="summary"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ======== CONSTRUCTOR SUMMARY ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Summary</h3> |
||||
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/WrongThreadException.html#WrongThreadException--">WrongThreadException</a></span>()</code> |
||||
<div class="block">standard 0 arg constructor with no message</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><code><span class="memberNameLink"><a href="../../../com/jacob/com/WrongThreadException.html#WrongThreadException-java.lang.String-">WrongThreadException</a></span>(java.lang.String s)</code> |
||||
<div class="block">standard constructor with a string message</div> |
||||
</td> |
||||
</tr> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
<!-- ========== METHOD SUMMARY =========== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="method.summary"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Method Summary</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Throwable"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Throwable</h3> |
||||
<code>addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString</code></li> |
||||
</ul> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Methods inherited from class java.lang.Object</h3> |
||||
<code>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</code></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<div class="details"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<!-- ========= CONSTRUCTOR DETAIL ======== --> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="constructor.detail"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Constructor Detail</h3> |
||||
<a name="WrongThreadException--"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>WrongThreadException</h4> |
||||
<pre>public WrongThreadException()</pre> |
||||
<div class="block">standard 0 arg constructor with no message</div> |
||||
</li> |
||||
</ul> |
||||
<a name="WrongThreadException-java.lang.String-"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockListLast"> |
||||
<li class="blockList"> |
||||
<h4>WrongThreadException</h4> |
||||
<pre>public WrongThreadException(java.lang.String s)</pre> |
||||
<div class="block">standard constructor with a string message</div> |
||||
<dl> |
||||
<dt><span class="paramLabel">Parameters:</span></dt> |
||||
<dd><code>s</code> - </dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
</div> |
||||
<!-- ========= END OF CLASS DATA ========= --> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li class="navBarCell1Rev">Class</li> |
||||
<li><a href="class-use/WrongThreadException.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">Prev Class</span></a></li> |
||||
<li>Next Class</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/WrongThreadException.html" target="_top">Frames</a></li> |
||||
<li><a href="WrongThreadException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<div> |
||||
<ul class="subNavList"> |
||||
<li>Summary: </li> |
||||
<li>Nested | </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.summary">Constr</a> | </li> |
||||
<li><a href="#methods.inherited.from.class.java.lang.Throwable">Method</a></li> |
||||
</ul> |
||||
<ul class="subNavList"> |
||||
<li>Detail: </li> |
||||
<li>Field | </li> |
||||
<li><a href="#constructor.detail">Constr</a> | </li> |
||||
<li>Method</li> |
||||
</ul> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,167 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.ComException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.ComException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.ComException" class="title">Uses of Class<br>com.jacob.com.ComException</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">ComFailException</a></span></code> |
||||
<div class="block">COM Fail Exception class raised when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.ComFailException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.ComFailException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComFailException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComFailException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.ComFailException" class="title">Uses of Class<br>com.jacob.com.ComFailException</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.ComFailException</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComFailException.html" target="_top">Frames</a></li> |
||||
<li><a href="ComFailException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.ComThread (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.ComThread (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComThread.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComThread.html" target="_top">Frames</a></li> |
||||
<li><a href="ComThread.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.ComThread" class="title">Uses of Class<br>com.jacob.com.ComThread</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.ComThread</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ComThread.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ComThread.html" target="_top">Frames</a></li> |
||||
<li><a href="ComThread.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,210 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.Currency (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.Currency (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Currency.html" target="_top">Frames</a></li> |
||||
<li><a href="Currency.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.Currency" class="title">Uses of Class<br>com.jacob.com.Currency</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getCurrency--">getCurrency</a></span>()</code> |
||||
<div class="block">MS Currency objects are 64 bit fixed point numbers with 15 digits to the |
||||
left and 4 to the right of the decimal place.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getCurrencyRef--">getCurrencyRef</a></span>()</code> |
||||
<div class="block">MS Currency objects are 64 bit fixed point numbers with 15 digits to the |
||||
left and 4 to the right of the decimal place.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toCurrency--">toCurrency</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">should be replaced by changeType() followed by getCurrency</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Currency.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Currency.html#compareTo-com.jacob.com.Currency-">compareTo</a></span>(<a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> anotherCurrency)</code> |
||||
<div class="block">compares the values of two currencies</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putCurrency-com.jacob.com.Currency-">putCurrency</a></span>(<a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> in)</code> |
||||
<div class="block">Puts a value in as a currency and sets the variant type.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putCurrencyRef-com.jacob.com.Currency-">putCurrencyRef</a></span>(<a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a> in)</code> |
||||
<div class="block">Pushes a long into the variant as currency and sets the type.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Currency.html" target="_top">Frames</a></li> |
||||
<li><a href="Currency.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.DateUtilities (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.DateUtilities (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DateUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="DateUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.DateUtilities" class="title">Uses of Class<br>com.jacob.com.DateUtilities</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.DateUtilities</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DateUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="DateUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,634 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.Dispatch (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.Dispatch (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Dispatch.html" target="_top">Frames</a></li> |
||||
<li><a href="Dispatch.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.Dispatch" class="title">Uses of Class<br>com.jacob.com.Dispatch</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></span></code> |
||||
<div class="block">This class provides a higher level, more object like, wrapper for top of the |
||||
Dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> that return <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#getObject--">getObject</a></span>()</code> |
||||
<div class="block">Probably was a cover for something else in the past.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> with parameters of type <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#setProperty-java.lang.String-com.jacob.com.Dispatch-">setProperty</a></span>(java.lang.String propertyName, |
||||
<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> arg)</code> |
||||
<div class="block">sets a property on this object</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> with parameters of type <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#ActiveXComponent-com.jacob.com.Dispatch-">ActiveXComponent</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchToBeWrapped)</code> |
||||
<div class="block">Creates an active X component that is built on top of the COM pointers |
||||
held in the passed in dispatch.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-">ActiveXDispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</code> |
||||
<div class="block">This is the most commonly used constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-">ActiveXDispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</code> |
||||
<div class="block">None of the samples use this constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html#ActiveXDispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-">ActiveXDispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</code> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getDispatch--">getDispatch</a></span>()</code> |
||||
<div class="block">cover for <a href="../../../../com/jacob/com/Variant.html#toDispatch--"><code>Variant.toDispatch()</code></a> This method now matches other getXXX() |
||||
methods.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getDispatchRef--">getDispatchRef</a></span>()</code> |
||||
<div class="block">Dispatch and dispatchRef are treated the same This is just a cover for |
||||
toDispatch() with a flag check</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#QueryInterface-java.lang.String-">QueryInterface</a></span>(java.lang.String iid)</code> |
||||
<div class="block">Return a different interface by IID string.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toDispatch--">toDispatch</a></span>()</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">DispatchProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchProxy.html#toDispatch--">toDispatch</a></span>()</code> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-int-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-int-java.lang.Object...-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
java.lang.Object... attributes)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-java.lang.String-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... attributes)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN_CaseSensitive-com.jacob.com.Dispatch-java.lang.String-java.lang.Object:A-">callN_CaseSensitive</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object[] values)</code> |
||||
<div class="block">not implemented yet</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN-com.jacob.com.Dispatch-int-java.lang.Object...-">callN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">callN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSub-com.jacob.com.Dispatch-int-">callSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid)</code> |
||||
<div class="block">makes call to native callSubN</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSub-com.jacob.com.Dispatch-int-java.lang.Object...-">callSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
java.lang.Object... attributes)</code> |
||||
<div class="block">makes call to native callSubN</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSub-com.jacob.com.Dispatch-java.lang.String-">callSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> |
||||
<div class="block">makes call to native callSubN</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSub-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">callSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... attributes)</code> |
||||
<div class="block">makes call to native callSubN</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSubN-com.jacob.com.Dispatch-int-java.lang.Object...-">callSubN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callSubN-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">callSubN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get_CaseSensitive-com.jacob.com.Dispatch-java.lang.String-">get_CaseSensitive</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> |
||||
<div class="block">not implemented yet</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get-com.jacob.com.Dispatch-int-">get</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid)</code> |
||||
<div class="block">Cover for call to underlying invokev()</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get-com.jacob.com.Dispatch-java.lang.String-">get</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> |
||||
<div class="block">Cover for call to underlying invokev()</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#getIDOfName-com.jacob.com.Dispatch-java.lang.String-">getIDOfName</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static int[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#getIDsOfNames-com.jacob.com.Dispatch-int-java.lang.String:A-">getIDsOfNames</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int lcid, |
||||
java.lang.String[] names)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static int[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#getIDsOfNames-com.jacob.com.Dispatch-java.lang.String:A-">getIDsOfNames</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String[] names)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#hasExited-com.jacob.com.Dispatch-">hasExited</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget)</code> |
||||
<div class="block">The method is used to poll until it returns 1, indicating that the COM |
||||
server in gone.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static int</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#hasExited-com.jacob.com.Dispatch-int-int-">hasExited</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> disp, |
||||
int dispid, |
||||
int lcid)</code> |
||||
<div class="block">Cover for native method</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-int-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-java.lang.String-int-int-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-java.lang.String-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSub-com.jacob.com.Dispatch-int-int-java.lang.Object:A-int:A-">invokeSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSub-com.jacob.com.Dispatch-java.lang.String-int-int-int-java.lang.Object:A-int:A-">invokeSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispid, |
||||
int lcid, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSub-com.jacob.com.Dispatch-java.lang.String-int-java.lang.Object:A-int:A-">invokeSub</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-int-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-java.lang.String-int-int-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-int-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr, |
||||
int wFlagsEx)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#put_Casesensitive-com.jacob.com.Dispatch-java.lang.String-java.lang.Object-">put_Casesensitive</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object val)</code> |
||||
<div class="block">not implemented yet</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#put-com.jacob.com.Dispatch-int-java.lang.Object-">put</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
java.lang.Object val)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#put-com.jacob.com.Dispatch-java.lang.String-java.lang.Object-">put</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object val)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putDispatch-com.jacob.com.Dispatch-">putDispatch</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> in)</code> |
||||
<div class="block">This acts a cover for putVariant Dispatch.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putDispatchRef-com.jacob.com.Dispatch-">putDispatchRef</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> in)</code> |
||||
<div class="block">Dispatch and dispatchRef are treated the same This is a cover for |
||||
putVariantDispatch().</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#putRef-com.jacob.com.Dispatch-int-java.lang.Object-">putRef</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
java.lang.Object val)</code> |
||||
<div class="block">cover for underlying call to invoke</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#putRef-com.jacob.com.Dispatch-java.lang.String-java.lang.Object-">putRef</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object val)</code> |
||||
<div class="block">cover for underlying call to invoke</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing constructors, and an explanation"> |
||||
<caption><span>Constructors in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Constructor and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#Dispatch-com.jacob.com.Dispatch-">Dispatch</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchToBeDisplaced)</code> |
||||
<div class="block">Constructor to be used by subclass that want to swap themselves in for |
||||
the default Dispatch class.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-">DispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink)</code> |
||||
<div class="block">This is the most commonly used constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-">DispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId)</code> |
||||
<div class="block">None of the samples use this constructor.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchEvents.html#DispatchEvents-com.jacob.com.Dispatch-java.lang.Object-java.lang.String-java.lang.String-">DispatchEvents</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> sourceOfEvent, |
||||
java.lang.Object eventSink, |
||||
java.lang.String progId, |
||||
java.lang.String typeLib)</code> |
||||
<div class="block">Creates the event callback linkage between the the MS program represented |
||||
by the Dispatch object and the Java object that will receive the |
||||
callback.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchProxy.html#DispatchProxy-com.jacob.com.Dispatch-">DispatchProxy</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> localDispatch)</code> |
||||
<div class="block">Marshals the passed in dispatch into the stream</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/EnumVariant.html#EnumVariant-com.jacob.com.Dispatch-">EnumVariant</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> disp)</code> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Dispatch.html" target="_top">Frames</a></li> |
||||
<li><a href="Dispatch.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,167 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.DispatchEvents (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.DispatchEvents (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.DispatchEvents" class="title">Uses of Class<br>com.jacob.com.DispatchEvents</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">ActiveXDispatchEvents</a></span></code> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchEvents.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchEvents.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.DispatchIdentifier (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.DispatchIdentifier (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchIdentifier.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchIdentifier.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.DispatchIdentifier" class="title">Uses of Class<br>com.jacob.com.DispatchIdentifier</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.DispatchIdentifier</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchIdentifier.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchIdentifier.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.DispatchProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.DispatchProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.DispatchProxy" class="title">Uses of Class<br>com.jacob.com.DispatchProxy</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.DispatchProxy</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/DispatchProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="DispatchProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,165 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.EnumVariant (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.EnumVariant (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/EnumVariant.html" target="_top">Frames</a></li> |
||||
<li><a href="EnumVariant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.EnumVariant" class="title">Uses of Class<br>com.jacob.com.EnumVariant</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toEnumVariant--">toEnumVariant</a></span>()</code> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/EnumVariant.html" target="_top">Frames</a></li> |
||||
<li><a href="EnumVariant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,221 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.InvocationProxy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.InvocationProxy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/InvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.InvocationProxy" class="title">Uses of Class<br>com.jacob.com.InvocationProxy</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX">ActiveXInvocationProxy</a></span></code> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> that return <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXDispatchEvents.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html#getInvocationProxy-java.lang.Object-">getInvocationProxy</a></span>(java.lang.Object pTargetObject)</code> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">InvocationProxyAllVariants</a></span></code> |
||||
<div class="block">This class acts as a proxy between the windows event callback mechanism and |
||||
the Java classes that are looking for events.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected <a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">DispatchEvents.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchEvents.html#getInvocationProxy-java.lang.Object-">getInvocationProxy</a></span>(java.lang.Object pTargetObject)</code> |
||||
<div class="block">Returns an instance of the proxy configured with pTargetObject as its |
||||
target</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/InvocationProxy.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxy.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.InvocationProxyAllVariants (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.InvocationProxyAllVariants (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/InvocationProxyAllVariants.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxyAllVariants.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.InvocationProxyAllVariants" class="title">Uses of Class<br>com.jacob.com.InvocationProxyAllVariants</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.InvocationProxyAllVariants</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/InvocationProxyAllVariants.html" target="_top">Frames</a></li> |
||||
<li><a href="InvocationProxyAllVariants.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,202 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.JacobException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.JacobException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobException.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.JacobException" class="title">Uses of Class<br>com.jacob.com.JacobException</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></span></code> |
||||
<div class="block">Standard exception thrown by com jni code when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">ComFailException</a></span></code> |
||||
<div class="block">COM Fail Exception class raised when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">NotImplementedException</a></span></code> |
||||
<div class="block">Thrown by java APIs that are not implemented either because they were never |
||||
implemented or because they are being deprecated This is a subclass of |
||||
ComException so callers can still just catch ComException.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">WrongThreadException</a></span></code> |
||||
<div class="block">thrown in util.cpp</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that throw <a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>java.lang.Object</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toJavaObject--">toJavaObject</a></span>()</code> |
||||
<div class="block">Convert a JACOB Variant value to a Java object (type conversions).</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobException.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,302 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.JacobObject (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.JacobObject (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobObject.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobObject.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.JacobObject" class="title">Uses of Class<br>com.jacob.com.JacobObject</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></span></code> |
||||
<div class="block">This class provides a higher level, more object like, wrapper for top of the |
||||
Dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX">ActiveXDispatchEvents</a></span></code> |
||||
<div class="block">RELEASE 1.12 EXPERIMENTAL.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span></code> |
||||
<div class="block">Object represents MS level dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></span></code> |
||||
<div class="block">This class creates the scaffolding for event callbacks.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">DispatchProxy</a></span></code> |
||||
<div class="block">If you need to pass a COM Dispatch object between STA threads, you have to |
||||
marshall the interface.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></span></code> |
||||
<div class="block">An implementation of IEnumVariant based on code submitted by Thomas Hallgren |
||||
(mailto:Thomas.Hallgren@eoncompany.com)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></span></code> |
||||
<div class="block">This creates an array wrapper around Variant objects(?).</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span></code> |
||||
<div class="block">The multi-format data type used for all call backs and most communications |
||||
between Java and COM.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">VariantViaEvent</a></span></code> |
||||
<div class="block">a public class to variant that is used to track which variant objects are |
||||
created by event callbacks This is solely used for that purpose.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return types with arguments of type <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static java.util.Map<<a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ROT.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ROT.html#addThread--">addThread</a></span>()</code> |
||||
<div class="block">adds a new thread storage area to rot</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected static java.util.Map<<a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a>,java.lang.String></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ROT.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ROT.html#getThreadObjects-boolean-">getThreadObjects</a></span>(boolean createIfDoesNotExist)</code> |
||||
<div class="block">Returns the pool for this thread if it exists.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ROT.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ROT.html#addObject-com.jacob.com.JacobObject-">addObject</a></span>(<a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block">Adds an object to the HashMap for the current thread.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ROT.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ROT.html#removeObject-com.jacob.com.JacobObject-">removeObject</a></span>(<a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. <br> |
||||
This will remove an object from the ROT <br> |
||||
This does not need to be synchronized because only the rot |
||||
modification related methods need to synchronized. Each |
||||
individual map is only modified in a single thread.</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ComThread.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ComThread.html#RemoveObject-com.jacob.com.JacobObject-">RemoveObject</a></span>(<a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a> o)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. |
||||
|
||||
This will remove an object from the ROT</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobObject.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobObject.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.JacobReleaseInfo (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.JacobReleaseInfo (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobReleaseInfo.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobReleaseInfo.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.JacobReleaseInfo" class="title">Uses of Class<br>com.jacob.com.JacobReleaseInfo</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.JacobReleaseInfo</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/JacobReleaseInfo.html" target="_top">Frames</a></li> |
||||
<li><a href="JacobReleaseInfo.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.LibraryLoader (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.LibraryLoader (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/LibraryLoader.html" target="_top">Frames</a></li> |
||||
<li><a href="LibraryLoader.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.LibraryLoader" class="title">Uses of Class<br>com.jacob.com.LibraryLoader</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.LibraryLoader</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/LibraryLoader.html" target="_top">Frames</a></li> |
||||
<li><a href="LibraryLoader.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,167 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.MainSTA (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.MainSTA (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/MainSTA.html" target="_top">Frames</a></li> |
||||
<li><a href="MainSTA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.MainSTA" class="title">Uses of Class<br>com.jacob.com.MainSTA</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> |
||||
<caption><span>Fields in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> declared as <a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ComThread.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/ComThread.html#mainSTA">mainSTA</a></span></code> |
||||
<div class="block">Comment for <code>mainSTA</code></div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/MainSTA.html" target="_top">Frames</a></li> |
||||
<li><a href="MainSTA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.NotImplementedException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.NotImplementedException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/NotImplementedException.html" target="_top">Frames</a></li> |
||||
<li><a href="NotImplementedException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.NotImplementedException" class="title">Uses of Class<br>com.jacob.com.NotImplementedException</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.NotImplementedException</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/NotImplementedException.html" target="_top">Frames</a></li> |
||||
<li><a href="NotImplementedException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.ROT (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.ROT (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ROT.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ROT.html" target="_top">Frames</a></li> |
||||
<li><a href="ROT.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.ROT" class="title">Uses of Class<br>com.jacob.com.ROT</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.ROT</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/ROT.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/ROT.html" target="_top">Frames</a></li> |
||||
<li><a href="ROT.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,170 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.STA (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.STA (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/STA.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/STA.html" target="_top">Frames</a></li> |
||||
<li><a href="STA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.STA" class="title">Uses of Class<br>com.jacob.com.STA</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></span></code> |
||||
<div class="block">We provide our own main sta thread to avoid COM tagging a random thread as |
||||
the main STA - this is the thread in which all Apartment threaded components |
||||
will be created if the client chooses an MTA threading model for the java |
||||
side of the app.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/STA.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/STA.html" target="_top">Frames</a></li> |
||||
<li><a href="STA.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,202 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.SafeArray (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.SafeArray (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/SafeArray.html" target="_top">Frames</a></li> |
||||
<li><a href="SafeArray.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.SafeArray" class="title">Uses of Class<br>com.jacob.com.SafeArray</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toSafeArray--">toSafeArray</a></span>()</code> |
||||
<div class="block">By default toSafeArray makes a deep copy due to the fact that this |
||||
Variant owns the embedded SafeArray and will destroy it when it gc's |
||||
calls toSafeArray(true).</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toSafeArray-boolean-">toSafeArray</a></span>(boolean deepCopy)</code> |
||||
<div class="block">This lets folk turn into a safe array without a deep copy.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putSafeArray-com.jacob.com.SafeArray-">putSafeArray</a></span>(<a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a> in)</code> |
||||
<div class="block">have no idea...</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putSafeArrayRef-com.jacob.com.SafeArray-">putSafeArrayRef</a></span>(<a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a> in)</code> |
||||
<div class="block">have no idea...</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#reinit-com.jacob.com.SafeArray-">reinit</a></span>(<a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a> sa)</code> |
||||
<div class="block">Does anyone want to document this?</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/SafeArray.html" target="_top">Frames</a></li> |
||||
<li><a href="SafeArray.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,747 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.Variant (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.Variant (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Variant.html" target="_top">Frames</a></li> |
||||
<li><a href="Variant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.Variant" class="title">Uses of Class<br>com.jacob.com.Variant</h2> |
||||
</div> |
||||
<div class="classUseContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> that return <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#getProperty-java.lang.String-">getProperty</a></span>(java.lang.String propertyName)</code> |
||||
<div class="block">retrieves a property and returns it as a Variant</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-">invoke</a></span>(java.lang.String callAction)</code> |
||||
<div class="block">makes a dispatch call for the passed in action and no parameter</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-boolean-">invoke</a></span>(java.lang.String actionCommand, |
||||
boolean parameter)</code> |
||||
<div class="block">makes a dispatch call to the passed in action with a single boolean |
||||
parameter</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-int-">invoke</a></span>(java.lang.String actionCommand, |
||||
int parameter)</code> |
||||
<div class="block">makes a dispatch call to the passed in action with a single int parameter</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-int-int-">invoke</a></span>(java.lang.String actionCommand, |
||||
int parameter1, |
||||
int parameter2)</code> |
||||
<div class="block">makes a dispatch call to the passed in action with two integer parameters |
||||
(this was put in for some application)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-java.lang.String-">invoke</a></span>(java.lang.String actionCommand, |
||||
java.lang.String parameter)</code> |
||||
<div class="block">invokes a single parameter call on this dispatch that returns no value</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-java.lang.String-int-">invoke</a></span>(java.lang.String actionCommand, |
||||
java.lang.String parameter1, |
||||
int parameter2)</code> |
||||
<div class="block">makes a dispatch call to the passed in action with a string and integer |
||||
parameter (this was put in for some application)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-com.jacob.com.Variant...-">invoke</a></span>(java.lang.String name, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>... args)</code> |
||||
<div class="block">This is really a cover for call(String,Variant[]) that should be |
||||
eliminated call with a variable number of args mainly used for quit.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXInvocationProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXInvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a> with parameters of type <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invoke-java.lang.String-com.jacob.com.Variant...-">invoke</a></span>(java.lang.String name, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>... args)</code> |
||||
<div class="block">This is really a cover for call(String,Variant[]) that should be |
||||
eliminated call with a variable number of args mainly used for quit.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXInvocationProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXInvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX">ActiveXComponent</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#invokeGetComponent-java.lang.String-com.jacob.com.Variant...-">invokeGetComponent</a></span>(java.lang.String callAction, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>... parameters)</code> |
||||
<div class="block">makes a dispatch call for the passed in action and single parameter</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#logCallbackEvent-java.lang.String-com.jacob.com.Variant:A-">logCallbackEvent</a></span>(java.lang.String description, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] args)</code> |
||||
<div class="block">used by the doc and application listeners to get intelligent logging</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">ActiveXComponent.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/activeX/ActiveXComponent.html#setProperty-java.lang.String-com.jacob.com.Variant-">setProperty</a></span>(java.lang.String propertyName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> arg)</code> |
||||
<div class="block">sets a property on this object</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Uses of <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></h3> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing subclasses, and an explanation"> |
||||
<caption><span>Subclasses of <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>class </code></td> |
||||
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">VariantViaEvent</a></span></code> |
||||
<div class="block">a public class to variant that is used to track which variant objects are |
||||
created by event callbacks This is solely used for that purpose.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing fields, and an explanation"> |
||||
<caption><span>Fields in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> declared as <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Field and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#DEFAULT">DEFAULT</a></span></code> |
||||
<div class="block">Use this constant for optional parameters</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#VT_FALSE">VT_FALSE</a></span></code> |
||||
<div class="block">Use for true/false variant parameters</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#VT_MISSING">VT_MISSING</a></span></code> |
||||
<div class="block">Same than <a href="../../../../com/jacob/com/Variant.html#DEFAULT"><code>DEFAULT</code></a></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#VT_TRUE">VT_TRUE</a></span></code> |
||||
<div class="block">Use for true/false variant parameters</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> that return <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-int-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-int-java.lang.Object...-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid, |
||||
java.lang.Object... attributes)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-java.lang.String-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#call-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">call</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... attributes)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN_CaseSensitive-com.jacob.com.Dispatch-java.lang.String-java.lang.Object:A-">callN_CaseSensitive</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object[] values)</code> |
||||
<div class="block">not implemented yet</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN-com.jacob.com.Dispatch-int-java.lang.Object...-">callN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#callN-com.jacob.com.Dispatch-java.lang.String-java.lang.Object...-">callN</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
java.lang.Object... args)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#changeType-short-">changeType</a></span>(short in)</code> |
||||
<div class="block">Cover for native method so we can cover it.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#cloneIndirect--">cloneIndirect</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">No longer used</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get_CaseSensitive-com.jacob.com.Dispatch-java.lang.String-">get_CaseSensitive</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> |
||||
<div class="block">not implemented yet</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get-com.jacob.com.Dispatch-int-">get</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispid)</code> |
||||
<div class="block">Cover for call to underlying invokev()</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#get-com.jacob.com.Dispatch-java.lang.String-">get</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name)</code> |
||||
<div class="block">Cover for call to underlying invokev()</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">InvocationProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxy.html#getVariant--">getVariant</a></span>()</code> |
||||
<div class="block">used by EventProxy.cpp to create variant objects in the right thread</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#getVariant-int-">getVariant</a></span>(int sa_idx)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#getVariant-int:A-">getVariant</a></span>(int[] indices)</code> |
||||
<div class="block">get Variant value from N-dimensional array</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#getVariant-int-int-">getVariant</a></span>(int sa_idx1, |
||||
int sa_idx2)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getVariantArray--">getVariantArray</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#getVariantArrayRef--">getVariantArrayRef</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-int-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-java.lang.String-int-int-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invoke-com.jacob.com.Dispatch-java.lang.String-int-java.lang.Object:A-int:A-">invoke</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
java.lang.Object[] oArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">InvocationProxyAllVariants.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxyAllVariants.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>abstract <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">InvocationProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> |
||||
<div class="block">The method actually invoked by EventProxy.cpp.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-int-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr, |
||||
int wFlagsEx)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">EnumVariant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/EnumVariant.html#Next--">Next</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">use nextElement() instead</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">EnumVariant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/EnumVariant.html#nextElement--">nextElement</a></span>()</code> |
||||
<div class="block">Implements java.util.Enumeration</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">VariantUtilities.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantUtilities.html#objectsToVariants-java.lang.Object:A-">objectsToVariants</a></span>(java.lang.Object[] arrayOfObjectsToBeConverted)</code> |
||||
<div class="block">converts an array of objects into an array of Variants by repeatedly |
||||
calling obj2Variant(Object)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">VariantUtilities.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantUtilities.html#objectToVariant-java.lang.Object-">objectToVariant</a></span>(java.lang.Object objectToBeMadeIntoVariant)</code> |
||||
<div class="block">Map arguments based on msdn documentation.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toVariant--">toVariant</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by "this"</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#toVariantArray--">toVariantArray</a></span>()</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[]</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#toVariantArray--">toVariantArray</a></span>()</code> |
||||
<div class="block">Retrieves the data from the array cast to a Java data type</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing methods, and an explanation"> |
||||
<caption><span>Methods in <a href="../../../../com/jacob/com/package-summary.html">com.jacob.com</a> with parameters of type <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th class="colLast" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#fromVariantArray-com.jacob.com.Variant:A-">fromVariantArray</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] ja)</code> |
||||
<div class="block">populate the safe array from the passed in array of data</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#getVariants-int-int-com.jacob.com.Variant:A-int-">getVariants</a></span>(int sa_idx, |
||||
int nelems, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] ja, |
||||
int ja_start)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">InvocationProxyAllVariants.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxyAllVariants.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>abstract <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">InvocationProxy.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/InvocationProxy.html#invoke-java.lang.String-com.jacob.com.Variant:A-">invoke</a></span>(java.lang.String methodName, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] targetParameters)</code> |
||||
<div class="block">The method actually invoked by EventProxy.cpp.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-int-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-java.lang.String-int-int-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokeSubv-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-">invokeSubv</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
int dispID, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-int-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int dispID, |
||||
int lcid, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr)</code> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>static <a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Dispatch.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Dispatch.html#invokev-com.jacob.com.Dispatch-java.lang.String-int-com.jacob.com.Variant:A-int:A-int-">invokev</a></span>(<a href="../../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a> dispatchTarget, |
||||
java.lang.String name, |
||||
int wFlags, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] vArg, |
||||
int[] uArgErr, |
||||
int wFlagsEx)</code> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>int</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">EnumVariant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/EnumVariant.html#Next-com.jacob.com.Variant:A-">Next</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] receiverArray)</code> |
||||
<div class="block">This should be private and wrapped to protect JNI layer.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected boolean</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#objectIsAConstant-com.jacob.com.Variant-">objectIsAConstant</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> pVariant)</code> |
||||
<div class="block">returns true if the passed in Variant is a constant that should not be |
||||
freed</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>protected static void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">VariantUtilities.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantUtilities.html#populateVariant-com.jacob.com.Variant-java.lang.Object-boolean-">populateVariant</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> targetVariant, |
||||
java.lang.Object pValueObject, |
||||
boolean fByRef)</code> |
||||
<div class="block">Populates a variant object from a java object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putVariantArray-com.jacob.com.Variant:A-">putVariantArray</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] in)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">Variant.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/Variant.html#putVariantArrayRef-com.jacob.com.Variant:A-">putVariantArrayRef</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] in)</code> |
||||
<div class="block"><span class="deprecatedLabel">Deprecated.</span> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#setVariant-int:A-com.jacob.com.Variant-">setVariant</a></span>(int[] indices, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> v)</code> |
||||
<div class="block">set Variant value in N-dimensional array</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#setVariant-int-int-com.jacob.com.Variant-">setVariant</a></span>(int sa_idx1, |
||||
int sa_idx2, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> c)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#setVariant-int-com.jacob.com.Variant-">setVariant</a></span>(int sa_idx, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> c)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><code>void</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">SafeArray.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/SafeArray.html#setVariants-int-int-com.jacob.com.Variant:A-int-">setVariants</a></span>(int sa_idx, |
||||
int nelems, |
||||
<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a>[] ja, |
||||
int ja_start)</code> |
||||
<div class="block">variant access</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><code>protected static java.lang.Object</code></td> |
||||
<td class="colLast"><span class="typeNameLabel">VariantUtilities.</span><code><span class="memberNameLink"><a href="../../../../com/jacob/com/VariantUtilities.html#variantToObject-com.jacob.com.Variant-">variantToObject</a></span>(<a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a> sourceData)</code> |
||||
<div class="block">Convert a JACOB Variant value to a Java object (type conversions).</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/Variant.html" target="_top">Frames</a></li> |
||||
<li><a href="Variant.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.VariantUtilities (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.VariantUtilities (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/VariantUtilities.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/VariantUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.VariantUtilities" class="title">Uses of Class<br>com.jacob.com.VariantUtilities</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.VariantUtilities</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/VariantUtilities.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/VariantUtilities.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantUtilities.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.VariantViaEvent (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.VariantViaEvent (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/VariantViaEvent.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantViaEvent.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.VariantViaEvent" class="title">Uses of Class<br>com.jacob.com.VariantViaEvent</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.VariantViaEvent</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/VariantViaEvent.html" target="_top">Frames</a></li> |
||||
<li><a href="VariantViaEvent.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,125 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Class com.jacob.com.WrongThreadException (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Class com.jacob.com.WrongThreadException (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/WrongThreadException.html" target="_top">Frames</a></li> |
||||
<li><a href="WrongThreadException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h2 title="Uses of Class com.jacob.com.WrongThreadException" class="title">Uses of Class<br>com.jacob.com.WrongThreadException</h2> |
||||
</div> |
||||
<div class="classUseContainer">No usage of com.jacob.com.WrongThreadException</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="../package-summary.html">Package</a></li> |
||||
<li><a href="../../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">Class</a></li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="../package-tree.html">Tree</a></li> |
||||
<li><a href="../../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../../index.html?com/jacob/com/class-use/WrongThreadException.html" target="_top">Frames</a></li> |
||||
<li><a href="WrongThreadException.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,47 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.com (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<h1 class="bar"><a href="../../../com/jacob/com/package-summary.html" target="classFrame">com.jacob.com</a></h1> |
||||
<div class="indexContainer"> |
||||
<h2 title="Classes">Classes</h2> |
||||
<ul title="Classes"> |
||||
<li><a href="ComThread.html" title="class in com.jacob.com" target="classFrame">ComThread</a></li> |
||||
<li><a href="Currency.html" title="class in com.jacob.com" target="classFrame">Currency</a></li> |
||||
<li><a href="DateUtilities.html" title="class in com.jacob.com" target="classFrame">DateUtilities</a></li> |
||||
<li><a href="Dispatch.html" title="class in com.jacob.com" target="classFrame">Dispatch</a></li> |
||||
<li><a href="DispatchEvents.html" title="class in com.jacob.com" target="classFrame">DispatchEvents</a></li> |
||||
<li><a href="DispatchIdentifier.html" title="class in com.jacob.com" target="classFrame">DispatchIdentifier</a></li> |
||||
<li><a href="DispatchProxy.html" title="class in com.jacob.com" target="classFrame">DispatchProxy</a></li> |
||||
<li><a href="EnumVariant.html" title="class in com.jacob.com" target="classFrame">EnumVariant</a></li> |
||||
<li><a href="InvocationProxy.html" title="class in com.jacob.com" target="classFrame">InvocationProxy</a></li> |
||||
<li><a href="InvocationProxyAllVariants.html" title="class in com.jacob.com" target="classFrame">InvocationProxyAllVariants</a></li> |
||||
<li><a href="JacobObject.html" title="class in com.jacob.com" target="classFrame">JacobObject</a></li> |
||||
<li><a href="JacobReleaseInfo.html" title="class in com.jacob.com" target="classFrame">JacobReleaseInfo</a></li> |
||||
<li><a href="LibraryLoader.html" title="class in com.jacob.com" target="classFrame">LibraryLoader</a></li> |
||||
<li><a href="MainSTA.html" title="class in com.jacob.com" target="classFrame">MainSTA</a></li> |
||||
<li><a href="ROT.html" title="class in com.jacob.com" target="classFrame">ROT</a></li> |
||||
<li><a href="SafeArray.html" title="class in com.jacob.com" target="classFrame">SafeArray</a></li> |
||||
<li><a href="STA.html" title="class in com.jacob.com" target="classFrame">STA</a></li> |
||||
<li><a href="Variant.html" title="class in com.jacob.com" target="classFrame">Variant</a></li> |
||||
<li><a href="VariantUtilities.html" title="class in com.jacob.com" target="classFrame">VariantUtilities</a></li> |
||||
<li><a href="VariantViaEvent.html" title="class in com.jacob.com" target="classFrame">VariantViaEvent</a></li> |
||||
</ul> |
||||
<h2 title="Exceptions">Exceptions</h2> |
||||
<ul title="Exceptions"> |
||||
<li><a href="ComException.html" title="class in com.jacob.com" target="classFrame">ComException</a></li> |
||||
<li><a href="ComFailException.html" title="class in com.jacob.com" target="classFrame">ComFailException</a></li> |
||||
<li><a href="JacobException.html" title="class in com.jacob.com" target="classFrame">JacobException</a></li> |
||||
<li><a href="NotImplementedException.html" title="class in com.jacob.com" target="classFrame">NotImplementedException</a></li> |
||||
<li><a href="WrongThreadException.html" title="class in com.jacob.com" target="classFrame">WrongThreadException</a></li> |
||||
</ul> |
||||
</div> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,312 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.com (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="com.jacob.com (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-use.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/package-summary.html">Prev Package</a></li> |
||||
<li>Next Package</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="package-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Package" class="title">Package com.jacob.com</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Class Summary table, listing classes, and an explanation"> |
||||
<caption><span>Class Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Class</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com">ComThread</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Represents a COM level thread This is an abstract class because all the |
||||
methods are static and no instances are ever created.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com">Currency</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Most COM bridges use java.lang.Long as their Java data type for COM Currency |
||||
data.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com">DateUtilities</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">java / windows date conversion utilities</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Object represents MS level dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com">DispatchEvents</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">This class creates the scaffolding for event callbacks.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com">DispatchIdentifier</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">A bunch of DispatchIds that were pulled out of the Dispatch class for version |
||||
1.14.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com">DispatchProxy</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">If you need to pass a COM Dispatch object between STA threads, you have to |
||||
marshall the interface.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com">EnumVariant</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">An implementation of IEnumVariant based on code submitted by Thomas Hallgren |
||||
(mailto:Thomas.Hallgren@eoncompany.com)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com">InvocationProxy</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com">InvocationProxyAllVariants</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">This class acts as a proxy between the windows event callback mechanism and |
||||
the Java classes that are looking for events.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com">JacobObject</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">The superclass of all Jacob objects.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com">JacobReleaseInfo</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">An interface to the version properties file.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com">LibraryLoader</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Utility class to centralize the way in which the jacob JNI library is loaded.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com">MainSTA</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">We provide our own main sta thread to avoid COM tagging a random thread as |
||||
the main STA - this is the thread in which all Apartment threaded components |
||||
will be created if the client chooses an MTA threading model for the java |
||||
side of the app.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/ROT.html" title="class in com.jacob.com">ROT</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">The Running Object Table (ROT) maps each thread to a collection of all the |
||||
JacobObjects that were created in that thread.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com">SafeArray</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">This creates an array wrapper around Variant objects(?).</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com">STA</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">A class that implements a Single Threaded Apartment.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">The multi-format data type used for all call backs and most communications |
||||
between Java and COM.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/VariantUtilities.html" title="class in com.jacob.com">VariantUtilities</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">A utility class used to convert between Java objects and Variants</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com">VariantViaEvent</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">a public class to variant that is used to track which variant objects are |
||||
created by event callbacks This is solely used for that purpose.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<table class="typeSummary" border="0" cellpadding="3" cellspacing="0" summary="Exception Summary table, listing exceptions, and an explanation"> |
||||
<caption><span>Exception Summary</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Exception</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Standard exception thrown by com jni code when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com">ComFailException</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">COM Fail Exception class raised when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">The parent class of all Jacob exceptions.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">NotImplementedException</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">Thrown by java APIs that are not implemented either because they were never |
||||
implemented or because they are being deprecated This is a subclass of |
||||
ComException so callers can still just catch ComException.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">WrongThreadException</a></td> |
||||
<td class="colLast"> |
||||
<div class="block">thrown in util.cpp</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li class="navBarCell1Rev">Package</li> |
||||
<li>Class</li> |
||||
<li><a href="package-use.html">Use</a></li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/package-summary.html">Prev Package</a></li> |
||||
<li>Next Package</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="package-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,196 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>com.jacob.com Class Hierarchy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="com.jacob.com Class Hierarchy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/package-tree.html">Prev</a></li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="package-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For Package com.jacob.com</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="../../../overview-tree.html">All Packages</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li type="circle">java.lang.Object |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">ComThread</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Currency</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/DateUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">DateUtilities</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchIdentifier</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">InvocationProxy</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">InvocationProxyAllVariants</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">JacobObject</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Dispatch</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/DispatchEvents.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchEvents</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/DispatchProxy.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchProxy</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">EnumVariant</span></a> (implements java.util.Enumeration<E>)</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">SafeArray</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Variant</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">VariantViaEvent</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">JacobReleaseInfo</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">LibraryLoader</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/ROT.html" title="class in com.jacob.com"><span class="typeNameLink">ROT</span></a></li> |
||||
<li type="circle">java.lang.Thread (implements java.lang.Runnable) |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/STA.html" title="class in com.jacob.com"><span class="typeNameLink">STA</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">MainSTA</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">java.lang.Throwable (implements java.io.Serializable) |
||||
<ul> |
||||
<li type="circle">java.lang.Exception |
||||
<ul> |
||||
<li type="circle">java.lang.RuntimeException |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">JacobException</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/ComException.html" title="class in com.jacob.com"><span class="typeNameLink">ComException</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">ComFailException</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">NotImplementedException</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/WrongThreadException.html" title="class in com.jacob.com"><span class="typeNameLink">WrongThreadException</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="../../../com/jacob/com/VariantUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">VariantUtilities</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li><a href="../../../com/jacob/activeX/package-tree.html">Prev</a></li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="package-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,254 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Uses of Package com.jacob.com (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="../../../stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="../../../script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Uses of Package com.jacob.com (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-use.html" target="_top">Frames</a></li> |
||||
<li><a href="package-use.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Uses of Package com.jacob.com" class="title">Uses of Package<br>com.jacob.com</h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing packages, and an explanation"> |
||||
<caption><span>Packages that use <a href="../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="#com.jacob.activeX">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="#com.jacob.com">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.activeX"> |
||||
<!-- --> |
||||
</a> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> |
||||
<caption><span>Classes in <a href="../../../com/jacob/com/package-summary.html">com.jacob.com</a> used by <a href="../../../com/jacob/activeX/package-summary.html">com.jacob.activeX</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/Dispatch.html#com.jacob.activeX">Dispatch</a> |
||||
<div class="block">Object represents MS level dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/DispatchEvents.html#com.jacob.activeX">DispatchEvents</a> |
||||
<div class="block">This class creates the scaffolding for event callbacks.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/InvocationProxy.html#com.jacob.activeX">InvocationProxy</a> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/JacobObject.html#com.jacob.activeX">JacobObject</a> |
||||
<div class="block">The superclass of all Jacob objects.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/Variant.html#com.jacob.activeX">Variant</a> |
||||
<div class="block">The multi-format data type used for all call backs and most communications |
||||
between Java and COM.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com"> |
||||
<!-- --> |
||||
</a> |
||||
<table class="useSummary" border="0" cellpadding="3" cellspacing="0" summary="Use table, listing classes, and an explanation"> |
||||
<caption><span>Classes in <a href="../../../com/jacob/com/package-summary.html">com.jacob.com</a> used by <a href="../../../com/jacob/com/package-summary.html">com.jacob.com</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Class and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/ComException.html#com.jacob.com">ComException</a> |
||||
<div class="block">Standard exception thrown by com jni code when there is a problem</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/Currency.html#com.jacob.com">Currency</a> |
||||
<div class="block">Most COM bridges use java.lang.Long as their Java data type for COM Currency |
||||
data.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/Dispatch.html#com.jacob.com">Dispatch</a> |
||||
<div class="block">Object represents MS level dispatch object.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/EnumVariant.html#com.jacob.com">EnumVariant</a> |
||||
<div class="block">An implementation of IEnumVariant based on code submitted by Thomas Hallgren |
||||
(mailto:Thomas.Hallgren@eoncompany.com)</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/InvocationProxy.html#com.jacob.com">InvocationProxy</a> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/JacobException.html#com.jacob.com">JacobException</a> |
||||
<div class="block">The parent class of all Jacob exceptions.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/JacobObject.html#com.jacob.com">JacobObject</a> |
||||
<div class="block">The superclass of all Jacob objects.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/MainSTA.html#com.jacob.com">MainSTA</a> |
||||
<div class="block">We provide our own main sta thread to avoid COM tagging a random thread as |
||||
the main STA - this is the thread in which all Apartment threaded components |
||||
will be created if the client chooses an MTA threading model for the java |
||||
side of the app.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/SafeArray.html#com.jacob.com">SafeArray</a> |
||||
<div class="block">This creates an array wrapper around Variant objects(?).</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/STA.html#com.jacob.com">STA</a> |
||||
<div class="block">A class that implements a Single Threaded Apartment.</div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="../../../com/jacob/com/class-use/Variant.html#com.jacob.com">Variant</a> |
||||
<div class="block">The multi-format data type used for all call backs and most communications |
||||
between Java and COM.</div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="../../../overview-summary.html">Overview</a></li> |
||||
<li><a href="package-summary.html">Package</a></li> |
||||
<li>Class</li> |
||||
<li class="navBarCell1Rev">Use</li> |
||||
<li><a href="package-tree.html">Tree</a></li> |
||||
<li><a href="../../../deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="../../../index-all.html">Index</a></li> |
||||
<li><a href="../../../help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="../../../index.html?com/jacob/com/package-use.html" target="_top">Frames</a></li> |
||||
<li><a href="package-use.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="../../../allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,876 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Constant Field Values (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Constant Field Values (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li> |
||||
<li><a href="constant-values.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Constant Field Values" class="title">Constant Field Values</h1> |
||||
<h2 title="Contents">Contents</h2> |
||||
<ul> |
||||
<li><a href="#com.jacob">com.jacob.*</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="constantValuesContainer"><a name="com.jacob"> |
||||
<!-- --> |
||||
</a> |
||||
<h2 title="com.jacob">com.jacob.*</h2> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values"> |
||||
<caption><span>com.jacob.com.<a href="com/jacob/com/Dispatch.html" title="class in com.jacob.com">Dispatch</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.fdexNameCaseSensitive"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#fdexNameCaseSensitive">fdexNameCaseSensitive</a></code></td> |
||||
<td class="colLast"><code>1</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.Get"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#Get">Get</a></code></td> |
||||
<td class="colLast"><code>2</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.LOCALE_SYSTEM_DEFAULT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#LOCALE_SYSTEM_DEFAULT">LOCALE_SYSTEM_DEFAULT</a></code></td> |
||||
<td class="colLast"><code>2048</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.Method"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#Method">Method</a></code></td> |
||||
<td class="colLast"><code>1</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.Put"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#Put">Put</a></code></td> |
||||
<td class="colLast"><code>4</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Dispatch.PutRef"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/Dispatch.html#PutRef">PutRef</a></code></td> |
||||
<td class="colLast"><code>8</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values"> |
||||
<caption><span>com.jacob.com.<a href="com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com">DispatchIdentifier</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_ABOUTBOX"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_ABOUTBOX">DISPID_ABOUTBOX</a></code></td> |
||||
<td class="colLast"><code>-552</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_APPEARANCE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_APPEARANCE">DISPID_AMBIENT_APPEARANCE</a></code></td> |
||||
<td class="colLast"><code>-716</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_AUTOCLIP"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_AUTOCLIP">DISPID_AMBIENT_AUTOCLIP</a></code></td> |
||||
<td class="colLast"><code>-715</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_BACKCOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_BACKCOLOR">DISPID_AMBIENT_BACKCOLOR</a></code></td> |
||||
<td class="colLast"><code>-701</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_CHARSET"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_CHARSET">DISPID_AMBIENT_CHARSET</a></code></td> |
||||
<td class="colLast"><code>-727</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_CODEPAGE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_CODEPAGE">DISPID_AMBIENT_CODEPAGE</a></code></td> |
||||
<td class="colLast"><code>-725</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_DISPLAYASDEFAULT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_DISPLAYASDEFAULT">DISPID_AMBIENT_DISPLAYASDEFAULT</a></code></td> |
||||
<td class="colLast"><code>-713</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_DISPLAYNAME"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_DISPLAYNAME">DISPID_AMBIENT_DISPLAYNAME</a></code></td> |
||||
<td class="colLast"><code>-702</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_FONT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_FONT">DISPID_AMBIENT_FONT</a></code></td> |
||||
<td class="colLast"><code>-703</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_FORECOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_FORECOLOR">DISPID_AMBIENT_FORECOLOR</a></code></td> |
||||
<td class="colLast"><code>-704</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_LOCALEID"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_LOCALEID">DISPID_AMBIENT_LOCALEID</a></code></td> |
||||
<td class="colLast"><code>-705</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_MESSAGEREFLECT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_MESSAGEREFLECT">DISPID_AMBIENT_MESSAGEREFLECT</a></code></td> |
||||
<td class="colLast"><code>-706</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_PALETTE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_PALETTE">DISPID_AMBIENT_PALETTE</a></code></td> |
||||
<td class="colLast"><code>-726</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_SCALEUNITS"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_SCALEUNITS">DISPID_AMBIENT_SCALEUNITS</a></code></td> |
||||
<td class="colLast"><code>-707</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_SHOWGRABHANDLES"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_SHOWGRABHANDLES">DISPID_AMBIENT_SHOWGRABHANDLES</a></code></td> |
||||
<td class="colLast"><code>-711</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_SHOWHATCHING"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_SHOWHATCHING">DISPID_AMBIENT_SHOWHATCHING</a></code></td> |
||||
<td class="colLast"><code>-712</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_SUPPORTSMNEMONICS"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_SUPPORTSMNEMONICS">DISPID_AMBIENT_SUPPORTSMNEMONICS</a></code></td> |
||||
<td class="colLast"><code>-714</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_TEXTALIGN"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_TEXTALIGN">DISPID_AMBIENT_TEXTALIGN</a></code></td> |
||||
<td class="colLast"><code>-708</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_TRANSFERPRIORITY"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_TRANSFERPRIORITY">DISPID_AMBIENT_TRANSFERPRIORITY</a></code></td> |
||||
<td class="colLast"><code>-728</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_UIDEAD"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_UIDEAD">DISPID_AMBIENT_UIDEAD</a></code></td> |
||||
<td class="colLast"><code>-710</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AMBIENT_USERMODE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AMBIENT_USERMODE">DISPID_AMBIENT_USERMODE</a></code></td> |
||||
<td class="colLast"><code>-709</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_APPEARANCE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_APPEARANCE">DISPID_APPEARANCE</a></code></td> |
||||
<td class="colLast"><code>-520</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_AUTOSIZE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_AUTOSIZE">DISPID_AUTOSIZE</a></code></td> |
||||
<td class="colLast"><code>-500</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BACKCOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BACKCOLOR">DISPID_BACKCOLOR</a></code></td> |
||||
<td class="colLast"><code>-501</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BACKSTYLE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BACKSTYLE">DISPID_BACKSTYLE</a></code></td> |
||||
<td class="colLast"><code>-502</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BORDERCOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BORDERCOLOR">DISPID_BORDERCOLOR</a></code></td> |
||||
<td class="colLast"><code>-503</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BORDERSTYLE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BORDERSTYLE">DISPID_BORDERSTYLE</a></code></td> |
||||
<td class="colLast"><code>-504</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BORDERVISIBLE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BORDERVISIBLE">DISPID_BORDERVISIBLE</a></code></td> |
||||
<td class="colLast"><code>-519</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_BORDERWIDTH"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_BORDERWIDTH">DISPID_BORDERWIDTH</a></code></td> |
||||
<td class="colLast"><code>-505</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_CAPTION"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_CAPTION">DISPID_CAPTION</a></code></td> |
||||
<td class="colLast"><code>-518</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_CLICK"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_CLICK">DISPID_CLICK</a></code></td> |
||||
<td class="colLast"><code>-600</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_COLLECT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_COLLECT">DISPID_COLLECT</a></code></td> |
||||
<td class="colLast"><code>-8</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_CONSTRUCTOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_CONSTRUCTOR">DISPID_CONSTRUCTOR</a></code></td> |
||||
<td class="colLast"><code>-6</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DBLCLICK"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DBLCLICK">DISPID_DBLCLICK</a></code></td> |
||||
<td class="colLast"><code>-601</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DESTRUCTOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DESTRUCTOR">DISPID_DESTRUCTOR</a></code></td> |
||||
<td class="colLast"><code>-7</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DOCLICK"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DOCLICK">DISPID_DOCLICK</a></code></td> |
||||
<td class="colLast"><code>-551</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DRAWMODE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DRAWMODE">DISPID_DRAWMODE</a></code></td> |
||||
<td class="colLast"><code>-507</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DRAWSTYLE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DRAWSTYLE">DISPID_DRAWSTYLE</a></code></td> |
||||
<td class="colLast"><code>-508</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_DRAWWIDTH"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_DRAWWIDTH">DISPID_DRAWWIDTH</a></code></td> |
||||
<td class="colLast"><code>-509</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_ENABLED"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_ENABLED">DISPID_ENABLED</a></code></td> |
||||
<td class="colLast"><code>-514</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_ERROREVENT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_ERROREVENT">DISPID_ERROREVENT</a></code></td> |
||||
<td class="colLast"><code>-608</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_EVALUATE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_EVALUATE">DISPID_EVALUATE</a></code></td> |
||||
<td class="colLast"><code>-5</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_FILLCOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_FILLCOLOR">DISPID_FILLCOLOR</a></code></td> |
||||
<td class="colLast"><code>-510</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_FILLSTYLE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_FILLSTYLE">DISPID_FILLSTYLE</a></code></td> |
||||
<td class="colLast"><code>-511</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_FONT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_FONT">DISPID_FONT</a></code></td> |
||||
<td class="colLast"><code>-512</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_FORECOLOR"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_FORECOLOR">DISPID_FORECOLOR</a></code></td> |
||||
<td class="colLast"><code>-513</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_HWND"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_HWND">DISPID_HWND</a></code></td> |
||||
<td class="colLast"><code>-515</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_KEYDOWN"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_KEYDOWN">DISPID_KEYDOWN</a></code></td> |
||||
<td class="colLast"><code>-602</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_KEYPRESS"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_KEYPRESS">DISPID_KEYPRESS</a></code></td> |
||||
<td class="colLast"><code>-603</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_KEYUP"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_KEYUP">DISPID_KEYUP</a></code></td> |
||||
<td class="colLast"><code>-604</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_MOUSEDOWN"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_MOUSEDOWN">DISPID_MOUSEDOWN</a></code></td> |
||||
<td class="colLast"><code>-605</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_MOUSEICON"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_MOUSEICON">DISPID_MOUSEICON</a></code></td> |
||||
<td class="colLast"><code>-522</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_MOUSEMOVE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_MOUSEMOVE">DISPID_MOUSEMOVE</a></code></td> |
||||
<td class="colLast"><code>-606</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_MOUSEPOINTER"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_MOUSEPOINTER">DISPID_MOUSEPOINTER</a></code></td> |
||||
<td class="colLast"><code>-521</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_MOUSEUP"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_MOUSEUP">DISPID_MOUSEUP</a></code></td> |
||||
<td class="colLast"><code>-607</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_NEWENUM"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_NEWENUM">DISPID_NEWENUM</a></code></td> |
||||
<td class="colLast"><code>-4</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_PICTURE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_PICTURE">DISPID_PICTURE</a></code></td> |
||||
<td class="colLast"><code>-523</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_PROPERTYPUT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_PROPERTYPUT">DISPID_PROPERTYPUT</a></code></td> |
||||
<td class="colLast"><code>-3</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_READYSTATE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_READYSTATE">DISPID_READYSTATE</a></code></td> |
||||
<td class="colLast"><code>-525</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_READYSTATECHANGE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_READYSTATECHANGE">DISPID_READYSTATECHANGE</a></code></td> |
||||
<td class="colLast"><code>-609</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_REFRESH"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_REFRESH">DISPID_REFRESH</a></code></td> |
||||
<td class="colLast"><code>-550</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_TABSTOP"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_TABSTOP">DISPID_TABSTOP</a></code></td> |
||||
<td class="colLast"><code>-516</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_TEXT"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_TEXT">DISPID_TEXT</a></code></td> |
||||
<td class="colLast"><code>-517</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_UNKNOWN"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_UNKNOWN">DISPID_UNKNOWN</a></code></td> |
||||
<td class="colLast"><code>-1</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_VALID"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_VALID">DISPID_VALID</a></code></td> |
||||
<td class="colLast"><code>-524</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.DispatchIdentifier.DISPID_VALUE"> |
||||
<!-- --> |
||||
</a><code>public static final int</code></td> |
||||
<td><code><a href="com/jacob/com/DispatchIdentifier.html#DISPID_VALUE">DISPID_VALUE</a></code></td> |
||||
<td class="colLast"><code>0</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values"> |
||||
<caption><span>com.jacob.com.<a href="com/jacob/com/LibraryLoader.html" title="class in com.jacob.com">LibraryLoader</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.DLL_NAME_MODIFIER_32_BIT"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#DLL_NAME_MODIFIER_32_BIT">DLL_NAME_MODIFIER_32_BIT</a></code></td> |
||||
<td class="colLast"><code>"x86"</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.DLL_NAME_MODIFIER_64_BIT"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#DLL_NAME_MODIFIER_64_BIT">DLL_NAME_MODIFIER_64_BIT</a></code></td> |
||||
<td class="colLast"><code>"x64"</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.JACOB_DLL_NAME"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME">JACOB_DLL_NAME</a></code></td> |
||||
<td class="colLast"><code>"jacob.dll.name"</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.JACOB_DLL_NAME_X64"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X64">JACOB_DLL_NAME_X64</a></code></td> |
||||
<td class="colLast"><code>"jacob.dll.name.x64"</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.JACOB_DLL_NAME_X86"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#JACOB_DLL_NAME_X86">JACOB_DLL_NAME_X86</a></code></td> |
||||
<td class="colLast"><code>"jacob.dll.name.x86"</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.LibraryLoader.JACOB_DLL_PATH"> |
||||
<!-- --> |
||||
</a><code>public static final java.lang.String</code></td> |
||||
<td><code><a href="com/jacob/com/LibraryLoader.html#JACOB_DLL_PATH">JACOB_DLL_PATH</a></code></td> |
||||
<td class="colLast"><code>"jacob.dll.path"</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
<li class="blockList"> |
||||
<table class="constantsSummary" border="0" cellpadding="3" cellspacing="0" summary="Constant Field Values table, listing constant fields, and values"> |
||||
<caption><span>com.jacob.com.<a href="com/jacob/com/Variant.html" title="class in com.jacob.com">Variant</a></span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Modifier and Type</th> |
||||
<th scope="col">Constant Field</th> |
||||
<th class="colLast" scope="col">Value</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantArray"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantArray">VariantArray</a></code></td> |
||||
<td class="colLast"><code>8192</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantBoolean"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantBoolean">VariantBoolean</a></code></td> |
||||
<td class="colLast"><code>11</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantByref"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantByref">VariantByref</a></code></td> |
||||
<td class="colLast"><code>16384</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantByte"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantByte">VariantByte</a></code></td> |
||||
<td class="colLast"><code>17</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantCurrency"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantCurrency">VariantCurrency</a></code></td> |
||||
<td class="colLast"><code>6</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantDate"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantDate">VariantDate</a></code></td> |
||||
<td class="colLast"><code>7</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantDecimal"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantDecimal">VariantDecimal</a></code></td> |
||||
<td class="colLast"><code>14</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantDispatch"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantDispatch">VariantDispatch</a></code></td> |
||||
<td class="colLast"><code>9</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantDouble"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantDouble">VariantDouble</a></code></td> |
||||
<td class="colLast"><code>5</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantEmpty"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantEmpty">VariantEmpty</a></code></td> |
||||
<td class="colLast"><code>0</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantError"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantError">VariantError</a></code></td> |
||||
<td class="colLast"><code>10</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantFloat"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantFloat">VariantFloat</a></code></td> |
||||
<td class="colLast"><code>4</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantInt"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantInt">VariantInt</a></code></td> |
||||
<td class="colLast"><code>3</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantLongInt"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantLongInt">VariantLongInt</a></code></td> |
||||
<td class="colLast"><code>20</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantNull"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantNull">VariantNull</a></code></td> |
||||
<td class="colLast"><code>1</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantObject"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantObject">VariantObject</a></code></td> |
||||
<td class="colLast"><code>13</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantPointer"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantPointer">VariantPointer</a></code></td> |
||||
<td class="colLast"><code>26</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantShort"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantShort">VariantShort</a></code></td> |
||||
<td class="colLast"><code>2</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantString"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantString">VariantString</a></code></td> |
||||
<td class="colLast"><code>8</code></td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantTypeMask"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantTypeMask">VariantTypeMask</a></code></td> |
||||
<td class="colLast"><code>4095</code></td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a name="com.jacob.com.Variant.VariantVariant"> |
||||
<!-- --> |
||||
</a><code>public static final short</code></td> |
||||
<td><code><a href="com/jacob/com/Variant.html#VariantVariant">VariantVariant</a></code></td> |
||||
<td class="colLast"><code>12</code></td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?constant-values.html" target="_top">Frames</a></li> |
||||
<li><a href="constant-values.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,317 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Deprecated List (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Deprecated List (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li class="navBarCell1Rev">Deprecated</li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li> |
||||
<li><a href="deprecated-list.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Deprecated API" class="title">Deprecated API</h1> |
||||
<h2 title="Contents">Contents</h2> |
||||
<ul> |
||||
<li><a href="#method">Deprecated Methods</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"><a name="method"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<table class="deprecatedSummary" border="0" cellpadding="3" cellspacing="0" summary="Deprecated Methods table, listing deprecated methods, and an explanation"> |
||||
<caption><span>Deprecated Methods</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colOne" scope="col">Method and Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#cloneIndirect--">com.jacob.com.Variant.cloneIndirect()</a> |
||||
<div class="block"><span class="deprecationComment">No longer used</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/JacobObject.html#getBuildDate--">com.jacob.com.JacobObject.getBuildDate()</a> |
||||
<div class="block"><span class="deprecationComment">use JacobReleaseInfo.getBuildDate() instead.</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/JacobObject.html#getBuildVersion--">com.jacob.com.JacobObject.getBuildVersion()</a> |
||||
<div class="block"><span class="deprecationComment">use JacobReleaseInfo.getBuildVersion() instead.</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#getEmpty--">com.jacob.com.Variant.getEmpty()</a> |
||||
<div class="block"><span class="deprecationComment">method never did anything</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#getNull--">com.jacob.com.Variant.getNull()</a> |
||||
<div class="block"><span class="deprecationComment">method never did anything</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#getVariantArray--">com.jacob.com.Variant.getVariantArray()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#getVariantArrayRef--">com.jacob.com.Variant.getVariantArrayRef()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/EnumVariant.html#Next--">com.jacob.com.EnumVariant.Next()</a> |
||||
<div class="block"><span class="deprecationComment">use nextElement() instead</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#noParam--">com.jacob.com.Variant.noParam()</a> |
||||
<div class="block"><span class="deprecationComment">replaced by putNoParam()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putByteArray-java.lang.Object-">com.jacob.com.Variant.putByteArray(Object)</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putCharArray-java.lang.Object-">com.jacob.com.Variant.putCharArray(Object)</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putObject-java.lang.Object-">com.jacob.com.Variant.putObject(Object)</a> |
||||
<div class="block"><span class="deprecationComment">should use putDispatch()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putObjectRef-java.lang.Object-">com.jacob.com.Variant.putObjectRef(Object)</a> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putVariantArray-com.jacob.com.Variant:A-">com.jacob.com.Variant.putVariantArray(Variant[])</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#putVariantArrayRef-com.jacob.com.Variant:A-">com.jacob.com.Variant.putVariantArrayRef(Variant[])</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/ROT.html#removeObject-com.jacob.com.JacobObject-">com.jacob.com.ROT.removeObject(JacobObject)</a> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. <br> |
||||
This will remove an object from the ROT <br> |
||||
This does not need to be synchronized because only the rot |
||||
modification related methods need to synchronized. Each |
||||
individual map is only modified in a single thread.</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/ComThread.html#RemoveObject-com.jacob.com.JacobObject-">com.jacob.com.ComThread.RemoveObject(JacobObject)</a> |
||||
<div class="block"><span class="deprecationComment">the java model leave the responsibility of clearing up |
||||
objects to the Garbage Collector. Our programming model |
||||
should not require that the user specifically remove object |
||||
from the thread. |
||||
|
||||
This will remove an object from the ROT</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toBoolean--">com.jacob.com.Variant.toBoolean()</a> |
||||
<div class="block"><span class="deprecationComment">should be replaced by changeType() followed by getBoolean()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toByte--">com.jacob.com.Variant.toByte()</a> |
||||
<div class="block"><span class="deprecationComment">should be replaced by changeType() followed by getByte()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toByteArray--">com.jacob.com.Variant.toByteArray()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toCharArray--">com.jacob.com.Variant.toCharArray()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toCurrency--">com.jacob.com.Variant.toCurrency()</a> |
||||
<div class="block"><span class="deprecationComment">should be replaced by changeType() followed by getCurrency</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toDate--">com.jacob.com.Variant.toDate()</a> |
||||
<div class="block"><span class="deprecationComment">should use changeType() followed by getDate()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toDouble--">com.jacob.com.Variant.toDouble()</a> |
||||
<div class="block"><span class="deprecationComment">should call changeType() then getDouble()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toError--">com.jacob.com.Variant.toError()</a> |
||||
<div class="block"><span class="deprecationComment">should use changeType() followed by getError()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toFloat--">com.jacob.com.Variant.toFloat()</a> |
||||
<div class="block"><span class="deprecationComment">should use changeType() and getFloat() instead</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toInt--">com.jacob.com.Variant.toInt()</a> |
||||
<div class="block"><span class="deprecationComment">should use changeType() followed by getInt()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toJavaDate--">com.jacob.com.Variant.toJavaDate()</a> |
||||
<div class="block"><span class="deprecationComment">callers should use getDate()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toObject--">com.jacob.com.Variant.toObject()</a> |
||||
<div class="block"><span class="deprecationComment">this is a cover for toDispatch();</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toScriptObject--">com.jacob.com.Variant.toScriptObject()</a> </td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toShort--">com.jacob.com.Variant.toShort()</a> |
||||
<div class="block"><span class="deprecationComment">callers should use changeType() followed by getShort()</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toVariant--">com.jacob.com.Variant.toVariant()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by "this"</span></div> |
||||
</td> |
||||
</tr> |
||||
<tr class="altColor"> |
||||
<td class="colOne"><a href="com/jacob/com/Variant.html#toVariantArray--">com.jacob.com.Variant.toVariantArray()</a> |
||||
<div class="block"><span class="deprecationComment">superseded by SafeArray</span></div> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li class="navBarCell1Rev">Deprecated</li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?deprecated-list.html" target="_top">Frames</a></li> |
||||
<li><a href="deprecated-list.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,230 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>API Help (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="API Help (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li class="navBarCell1Rev">Help</li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li> |
||||
<li><a href="help-doc.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 class="title">How This API Document Is Organized</h1> |
||||
<div class="subTitle">This API (Application Programming Interface) document has pages corresponding to the items in the navigation bar, described as follows.</div> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h2>Overview</h2> |
||||
<p>The <a href="overview-summary.html">Overview</a> page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Package</h2> |
||||
<p>Each package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:</p> |
||||
<ul> |
||||
<li>Interfaces (italic)</li> |
||||
<li>Classes</li> |
||||
<li>Enums</li> |
||||
<li>Exceptions</li> |
||||
<li>Errors</li> |
||||
<li>Annotation Types</li> |
||||
</ul> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Class/Interface</h2> |
||||
<p>Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:</p> |
||||
<ul> |
||||
<li>Class inheritance diagram</li> |
||||
<li>Direct Subclasses</li> |
||||
<li>All Known Subinterfaces</li> |
||||
<li>All Known Implementing Classes</li> |
||||
<li>Class/interface declaration</li> |
||||
<li>Class/interface description</li> |
||||
</ul> |
||||
<ul> |
||||
<li>Nested Class Summary</li> |
||||
<li>Field Summary</li> |
||||
<li>Constructor Summary</li> |
||||
<li>Method Summary</li> |
||||
</ul> |
||||
<ul> |
||||
<li>Field Detail</li> |
||||
<li>Constructor Detail</li> |
||||
<li>Method Detail</li> |
||||
</ul> |
||||
<p>Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Annotation Type</h2> |
||||
<p>Each annotation type has its own separate page with the following sections:</p> |
||||
<ul> |
||||
<li>Annotation Type declaration</li> |
||||
<li>Annotation Type description</li> |
||||
<li>Required Element Summary</li> |
||||
<li>Optional Element Summary</li> |
||||
<li>Element Detail</li> |
||||
</ul> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Enum</h2> |
||||
<p>Each enum has its own separate page with the following sections:</p> |
||||
<ul> |
||||
<li>Enum declaration</li> |
||||
<li>Enum description</li> |
||||
<li>Enum Constant Summary</li> |
||||
<li>Enum Constant Detail</li> |
||||
</ul> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Use</h2> |
||||
<p>Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the "Use" link in the navigation bar.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Tree (Class Hierarchy)</h2> |
||||
<p>There is a <a href="overview-tree.html">Class Hierarchy</a> page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with <code>java.lang.Object</code>. The interfaces do not inherit from <code>java.lang.Object</code>.</p> |
||||
<ul> |
||||
<li>When viewing the Overview page, clicking on "Tree" displays the hierarchy for all packages.</li> |
||||
<li>When viewing a particular package, class or interface page, clicking "Tree" displays the hierarchy for only that package.</li> |
||||
</ul> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Deprecated API</h2> |
||||
<p>The <a href="deprecated-list.html">Deprecated API</a> page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Index</h2> |
||||
<p>The <a href="index-all.html">Index</a> contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Prev/Next</h2> |
||||
<p>These links take you to the next or previous class, interface, package, or related page.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Frames/No Frames</h2> |
||||
<p>These links show and hide the HTML frames. All pages are available with or without frames.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>All Classes</h2> |
||||
<p>The <a href="allclasses-noframe.html">All Classes</a> link shows all classes and interfaces except non-static nested types.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Serialized Form</h2> |
||||
<p>Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.</p> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h2>Constant Field Values</h2> |
||||
<p>The <a href="constant-values.html">Constant Field Values</a> page lists the static final fields and their values.</p> |
||||
</li> |
||||
</ul> |
||||
<span class="emphasizedPhrase">This help file applies to API documentation generated using the standard doclet.</span></div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li class="navBarCell1Rev">Help</li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?help-doc.html" target="_top">Frames</a></li> |
||||
<li><a href="help-doc.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,75 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>JACOB : Java COM Bridge API Docs</title> |
||||
<script type="text/javascript"> |
||||
tmpTargetPage = "" + window.location.search; |
||||
if (tmpTargetPage != "" && tmpTargetPage != "undefined") |
||||
tmpTargetPage = tmpTargetPage.substring(1); |
||||
if (tmpTargetPage.indexOf(":") != -1 || (tmpTargetPage != "" && !validURL(tmpTargetPage))) |
||||
tmpTargetPage = "undefined"; |
||||
targetPage = tmpTargetPage; |
||||
function validURL(url) { |
||||
try { |
||||
url = decodeURIComponent(url); |
||||
} |
||||
catch (error) { |
||||
return false; |
||||
} |
||||
var pos = url.indexOf(".html"); |
||||
if (pos == -1 || pos != url.length - 5) |
||||
return false; |
||||
var allowNumber = false; |
||||
var allowSep = false; |
||||
var seenDot = false; |
||||
for (var i = 0; i < url.length - 5; i++) { |
||||
var ch = url.charAt(i); |
||||
if ('a' <= ch && ch <= 'z' || |
||||
'A' <= ch && ch <= 'Z' || |
||||
ch == '$' || |
||||
ch == '_' || |
||||
ch.charCodeAt(0) > 127) { |
||||
allowNumber = true; |
||||
allowSep = true; |
||||
} else if ('0' <= ch && ch <= '9' |
||||
|| ch == '-') { |
||||
if (!allowNumber) |
||||
return false; |
||||
} else if (ch == '/' || ch == '.') { |
||||
if (!allowSep) |
||||
return false; |
||||
allowNumber = false; |
||||
allowSep = false; |
||||
if (ch == '.') |
||||
seenDot = true; |
||||
if (ch == '/' && seenDot) |
||||
return false; |
||||
} else { |
||||
return false; |
||||
} |
||||
} |
||||
return true; |
||||
} |
||||
function loadFrames() { |
||||
if (targetPage != "" && targetPage != "undefined") |
||||
top.classFrame.location = top.targetPage; |
||||
} |
||||
</script> |
||||
</head> |
||||
<frameset cols="20%,80%" title="Documentation frame" onload="top.loadFrames()"> |
||||
<frameset rows="30%,70%" title="Left frames" onload="top.loadFrames()"> |
||||
<frame src="overview-frame.html" name="packageListFrame" title="All Packages"> |
||||
<frame src="allclasses-frame.html" name="packageFrame" title="All classes and interfaces (except non-static nested types)"> |
||||
</frameset> |
||||
<frame src="overview-summary.html" name="classFrame" title="Package, class and interface descriptions" scrolling="yes"> |
||||
<noframes> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<h2>Frame Alert</h2> |
||||
<p>This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client. Link to <a href="overview-summary.html">Non-frame version</a>.</p> |
||||
</noframes> |
||||
</frameset> |
||||
</html> |
||||
@ -0,0 +1,22 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Overview List (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<div class="indexHeader"><span><a href="allclasses-frame.html" target="packageFrame">All Classes</a></span></div> |
||||
<div class="indexContainer"> |
||||
<h2 title="Packages">Packages</h2> |
||||
<ul title="Packages"> |
||||
<li><a href="com/jacob/activeX/package-frame.html" target="packageFrame">com.jacob.activeX</a></li> |
||||
<li><a href="com/jacob/com/package-frame.html" target="packageFrame">com.jacob.com</a></li> |
||||
</ul> |
||||
</div> |
||||
<p> </p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,143 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Overview (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Overview (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li class="navBarCell1Rev">Overview</li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?overview-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="overview-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 class="title"><h1>JACOB : Java COM Bridge</h1></h1> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<table class="overviewSummary" border="0" cellpadding="3" cellspacing="0" summary="Other Packages table, listing packages, and an explanation"> |
||||
<caption><span>Other Packages</span><span class="tabEnd"> </span></caption> |
||||
<tr> |
||||
<th class="colFirst" scope="col">Package</th> |
||||
<th class="colLast" scope="col">Description</th> |
||||
</tr> |
||||
<tbody> |
||||
<tr class="altColor"> |
||||
<td class="colFirst"><a href="com/jacob/activeX/package-summary.html">com.jacob.activeX</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
<tr class="rowColor"> |
||||
<td class="colFirst"><a href="com/jacob/com/package-summary.html">com.jacob.com</a></td> |
||||
<td class="colLast"> </td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li class="navBarCell1Rev">Overview</li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?overview-summary.html" target="_top">Frames</a></li> |
||||
<li><a href="overview-summary.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,206 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:58 EDT 2020 --> |
||||
<title>Class Hierarchy (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Class Hierarchy (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="overview-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 class="title">Hierarchy For All Packages</h1> |
||||
<span class="packageHierarchyLabel">Package Hierarchies:</span> |
||||
<ul class="horizontal"> |
||||
<li><a href="com/jacob/activeX/package-tree.html">com.jacob.activeX</a>, </li> |
||||
<li><a href="com/jacob/com/package-tree.html">com.jacob.com</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="contentContainer"> |
||||
<h2 title="Class Hierarchy">Class Hierarchy</h2> |
||||
<ul> |
||||
<li type="circle">java.lang.Object |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/ComThread.html" title="class in com.jacob.com"><span class="typeNameLink">ComThread</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/Currency.html" title="class in com.jacob.com"><span class="typeNameLink">Currency</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/DateUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">DateUtilities</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/DispatchIdentifier.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchIdentifier</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/InvocationProxy.html" title="class in com.jacob.com"><span class="typeNameLink">InvocationProxy</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="com/jacob/activeX/ActiveXInvocationProxy.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXInvocationProxy</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/InvocationProxyAllVariants.html" title="class in com.jacob.com"><span class="typeNameLink">InvocationProxyAllVariants</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/JacobObject.html" title="class in com.jacob.com"><span class="typeNameLink">JacobObject</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/Dispatch.html" title="class in com.jacob.com"><span class="typeNameLink">Dispatch</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="com/jacob/activeX/ActiveXComponent.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXComponent</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/DispatchEvents.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchEvents</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.activeX.<a href="com/jacob/activeX/ActiveXDispatchEvents.html" title="class in com.jacob.activeX"><span class="typeNameLink">ActiveXDispatchEvents</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/DispatchProxy.html" title="class in com.jacob.com"><span class="typeNameLink">DispatchProxy</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/EnumVariant.html" title="class in com.jacob.com"><span class="typeNameLink">EnumVariant</span></a> (implements java.util.Enumeration<E>)</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/SafeArray.html" title="class in com.jacob.com"><span class="typeNameLink">SafeArray</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/Variant.html" title="class in com.jacob.com"><span class="typeNameLink">Variant</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/VariantViaEvent.html" title="class in com.jacob.com"><span class="typeNameLink">VariantViaEvent</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/JacobReleaseInfo.html" title="class in com.jacob.com"><span class="typeNameLink">JacobReleaseInfo</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/LibraryLoader.html" title="class in com.jacob.com"><span class="typeNameLink">LibraryLoader</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/ROT.html" title="class in com.jacob.com"><span class="typeNameLink">ROT</span></a></li> |
||||
<li type="circle">java.lang.Thread (implements java.lang.Runnable) |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/STA.html" title="class in com.jacob.com"><span class="typeNameLink">STA</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/MainSTA.html" title="class in com.jacob.com"><span class="typeNameLink">MainSTA</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">java.lang.Throwable (implements java.io.Serializable) |
||||
<ul> |
||||
<li type="circle">java.lang.Exception |
||||
<ul> |
||||
<li type="circle">java.lang.RuntimeException |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/JacobException.html" title="class in com.jacob.com"><span class="typeNameLink">JacobException</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/ComException.html" title="class in com.jacob.com"><span class="typeNameLink">ComException</span></a> |
||||
<ul> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/ComFailException.html" title="class in com.jacob.com"><span class="typeNameLink">ComFailException</span></a></li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/NotImplementedException.html" title="class in com.jacob.com"><span class="typeNameLink">NotImplementedException</span></a></li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/WrongThreadException.html" title="class in com.jacob.com"><span class="typeNameLink">WrongThreadException</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li type="circle">com.jacob.com.<a href="com/jacob/com/VariantUtilities.html" title="class in com.jacob.com"><span class="typeNameLink">VariantUtilities</span></a></li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li class="navBarCell1Rev">Tree</li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?overview-tree.html" target="_top">Frames</a></li> |
||||
<li><a href="overview-tree.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,2 @@ |
||||
com.jacob.activeX |
||||
com.jacob.com |
||||
@ -0,0 +1,30 @@ |
||||
function show(type) |
||||
{ |
||||
count = 0; |
||||
for (var key in methods) { |
||||
var row = document.getElementById(key); |
||||
if ((methods[key] & type) != 0) { |
||||
row.style.display = ''; |
||||
row.className = (count++ % 2) ? rowColor : altColor; |
||||
} |
||||
else |
||||
row.style.display = 'none'; |
||||
} |
||||
updateTabs(type); |
||||
} |
||||
|
||||
function updateTabs(type) |
||||
{ |
||||
for (var value in tabs) { |
||||
var sNode = document.getElementById(tabs[value][0]); |
||||
var spanNode = sNode.firstChild; |
||||
if (value == type) { |
||||
sNode.className = activeTableTab; |
||||
spanNode.innerHTML = tabs[value][1]; |
||||
} |
||||
else { |
||||
sNode.className = tableTab; |
||||
spanNode.innerHTML = "<a href=\"javascript:show("+ value + ");\">" + tabs[value][1] + "</a>"; |
||||
} |
||||
} |
||||
} |
||||
@ -0,0 +1,205 @@ |
||||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
||||
<!-- NewPage --> |
||||
<html lang="en"> |
||||
<head> |
||||
<!-- Generated by javadoc (1.8.0_265) on Fri Sep 25 06:21:57 EDT 2020 --> |
||||
<title>Serialized Form (JACOB : Java COM Bridge API Docs)</title> |
||||
<meta name="date" content="2020-09-25"> |
||||
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style"> |
||||
<script type="text/javascript" src="script.js"></script> |
||||
</head> |
||||
<body> |
||||
<script type="text/javascript"><!-- |
||||
try { |
||||
if (location.href.indexOf('is-external=true') == -1) { |
||||
parent.document.title="Serialized Form (JACOB : Java COM Bridge API Docs)"; |
||||
} |
||||
} |
||||
catch(err) { |
||||
} |
||||
//--> |
||||
</script> |
||||
<noscript> |
||||
<div>JavaScript is disabled on your browser.</div> |
||||
</noscript> |
||||
<!-- ========= START OF TOP NAVBAR ======= --> |
||||
<div class="topNav"><a name="navbar.top"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.top.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> |
||||
<li><a href="serialized-form.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_top"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_top"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.top"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ========= END OF TOP NAVBAR ========= --> |
||||
<div class="header"> |
||||
<h1 title="Serialized Form" class="title">Serialized Form</h1> |
||||
</div> |
||||
<div class="serializedFormContainer"> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h2 title="Package">Package com.jacob.com</h2> |
||||
<ul class="blockList"> |
||||
<li class="blockList"><a name="com.jacob.com.ComException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="com/jacob/com/ComException.html" title="class in com.jacob.com">com.jacob.com.ComException</a> extends <a href="com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a> implements Serializable</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h3>Serialized Fields</h3> |
||||
<ul class="blockList"> |
||||
<li class="blockList"> |
||||
<h4>hr</h4> |
||||
<pre>int hr</pre> |
||||
<div class="block">COM code initializes this filed with an appropriate return code that was |
||||
returned by the underlying com code</div> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>m_helpContext</h4> |
||||
<pre>int m_helpContext</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
<li class="blockList"> |
||||
<h4>m_helpFile</h4> |
||||
<pre>java.lang.String m_helpFile</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
<li class="blockListLast"> |
||||
<h4>m_source</h4> |
||||
<pre>java.lang.String m_source</pre> |
||||
<div class="block">No documentation is available at this time. Someone should document this |
||||
field</div> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com.ComFailException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="com/jacob/com/ComFailException.html" title="class in com.jacob.com">com.jacob.com.ComFailException</a> extends <a href="com/jacob/com/ComException.html" title="class in com.jacob.com">ComException</a> implements Serializable</h3> |
||||
<dl class="nameValue"> |
||||
<dt>serialVersionUID:</dt> |
||||
<dd>-266047261992987700L</dd> |
||||
</dl> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com.JacobException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="com/jacob/com/JacobException.html" title="class in com.jacob.com">com.jacob.com.JacobException</a> extends java.lang.RuntimeException implements Serializable</h3> |
||||
<dl class="nameValue"> |
||||
<dt>serialVersionUID:</dt> |
||||
<dd>-1637125318746002715L</dd> |
||||
</dl> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com.NotImplementedException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="com/jacob/com/NotImplementedException.html" title="class in com.jacob.com">com.jacob.com.NotImplementedException</a> extends <a href="com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a> implements Serializable</h3> |
||||
<dl class="nameValue"> |
||||
<dt>serialVersionUID:</dt> |
||||
<dd>-9169900832852356445L</dd> |
||||
</dl> |
||||
</li> |
||||
<li class="blockList"><a name="com.jacob.com.WrongThreadException"> |
||||
<!-- --> |
||||
</a> |
||||
<h3>Class <a href="com/jacob/com/WrongThreadException.html" title="class in com.jacob.com">com.jacob.com.WrongThreadException</a> extends <a href="com/jacob/com/JacobException.html" title="class in com.jacob.com">JacobException</a> implements Serializable</h3> |
||||
<dl class="nameValue"> |
||||
<dt>serialVersionUID:</dt> |
||||
<dd>6308780364980228692L</dd> |
||||
</dl> |
||||
</li> |
||||
</ul> |
||||
</li> |
||||
</ul> |
||||
</div> |
||||
<!-- ======= START OF BOTTOM NAVBAR ====== --> |
||||
<div class="bottomNav"><a name="navbar.bottom"> |
||||
<!-- --> |
||||
</a> |
||||
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div> |
||||
<a name="navbar.bottom.firstrow"> |
||||
<!-- --> |
||||
</a> |
||||
<ul class="navList" title="Navigation"> |
||||
<li><a href="overview-summary.html">Overview</a></li> |
||||
<li>Package</li> |
||||
<li>Class</li> |
||||
<li>Use</li> |
||||
<li><a href="overview-tree.html">Tree</a></li> |
||||
<li><a href="deprecated-list.html">Deprecated</a></li> |
||||
<li><a href="index-all.html">Index</a></li> |
||||
<li><a href="help-doc.html">Help</a></li> |
||||
</ul> |
||||
</div> |
||||
<div class="subNav"> |
||||
<ul class="navList"> |
||||
<li>Prev</li> |
||||
<li>Next</li> |
||||
</ul> |
||||
<ul class="navList"> |
||||
<li><a href="index.html?serialized-form.html" target="_top">Frames</a></li> |
||||
<li><a href="serialized-form.html" target="_top">No Frames</a></li> |
||||
</ul> |
||||
<ul class="navList" id="allclasses_navbar_bottom"> |
||||
<li><a href="allclasses-noframe.html">All Classes</a></li> |
||||
</ul> |
||||
<div> |
||||
<script type="text/javascript"><!-- |
||||
allClassesLink = document.getElementById("allclasses_navbar_bottom"); |
||||
if(window==top) { |
||||
allClassesLink.style.display = "block"; |
||||
} |
||||
else { |
||||
allClassesLink.style.display = "none"; |
||||
} |
||||
//--> |
||||
</script> |
||||
</div> |
||||
<a name="skip.navbar.bottom"> |
||||
<!-- --> |
||||
</a></div> |
||||
<!-- ======== END OF BOTTOM NAVBAR ======= --> |
||||
<p class="legalCopy"><small><i>http://jacob-project.sourceforge.net</i></small></p> |
||||
</body> |
||||
</html> |
||||
@ -0,0 +1,574 @@ |
||||
/* Javadoc style sheet */ |
||||
/* |
||||
Overall document style |
||||
*/ |
||||
|
||||
@import url('resources/fonts/dejavu.css'); |
||||
|
||||
body { |
||||
background-color:#ffffff; |
||||
color:#353833; |
||||
font-family:'DejaVu Sans', Arial, Helvetica, sans-serif; |
||||
font-size:14px; |
||||
margin:0; |
||||
} |
||||
a:link, a:visited { |
||||
text-decoration:none; |
||||
color:#4A6782; |
||||
} |
||||
a:hover, a:focus { |
||||
text-decoration:none; |
||||
color:#bb7a2a; |
||||
} |
||||
a:active { |
||||
text-decoration:none; |
||||
color:#4A6782; |
||||
} |
||||
a[name] { |
||||
color:#353833; |
||||
} |
||||
a[name]:hover { |
||||
text-decoration:none; |
||||
color:#353833; |
||||
} |
||||
pre { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
} |
||||
h1 { |
||||
font-size:20px; |
||||
} |
||||
h2 { |
||||
font-size:18px; |
||||
} |
||||
h3 { |
||||
font-size:16px; |
||||
font-style:italic; |
||||
} |
||||
h4 { |
||||
font-size:13px; |
||||
} |
||||
h5 { |
||||
font-size:12px; |
||||
} |
||||
h6 { |
||||
font-size:11px; |
||||
} |
||||
ul { |
||||
list-style-type:disc; |
||||
} |
||||
code, tt { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
padding-top:4px; |
||||
margin-top:8px; |
||||
line-height:1.4em; |
||||
} |
||||
dt code { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
padding-top:4px; |
||||
} |
||||
table tr td dt code { |
||||
font-family:'DejaVu Sans Mono', monospace; |
||||
font-size:14px; |
||||
vertical-align:top; |
||||
padding-top:4px; |
||||
} |
||||
sup { |
||||
font-size:8px; |
||||
} |
||||
/* |
||||
Document title and Copyright styles |
||||
*/ |
||||
.clear { |
||||
clear:both; |
||||
height:0px; |
||||
overflow:hidden; |
||||
} |
||||
.aboutLanguage { |
||||
float:right; |
||||
padding:0px 21px; |
||||
font-size:11px; |
||||
z-index:200; |
||||
margin-top:-9px; |
||||
} |
||||
.legalCopy { |
||||
margin-left:.5em; |
||||
} |
||||
.bar a, .bar a:link, .bar a:visited, .bar a:active { |
||||
color:#FFFFFF; |
||||
text-decoration:none; |
||||
} |
||||
.bar a:hover, .bar a:focus { |
||||
color:#bb7a2a; |
||||
} |
||||
.tab { |
||||
background-color:#0066FF; |
||||
color:#ffffff; |
||||
padding:8px; |
||||
width:5em; |
||||
font-weight:bold; |
||||
} |
||||
/* |
||||
Navigation bar styles |
||||
*/ |
||||
.bar { |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
padding:.8em .5em .4em .8em; |
||||
height:auto;/*height:1.8em;*/ |
||||
font-size:11px; |
||||
margin:0; |
||||
} |
||||
.topNav { |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
float:left; |
||||
padding:0; |
||||
width:100%; |
||||
clear:right; |
||||
height:2.8em; |
||||
padding-top:10px; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.bottomNav { |
||||
margin-top:10px; |
||||
background-color:#4D7A97; |
||||
color:#FFFFFF; |
||||
float:left; |
||||
padding:0; |
||||
width:100%; |
||||
clear:right; |
||||
height:2.8em; |
||||
padding-top:10px; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.subNav { |
||||
background-color:#dee3e9; |
||||
float:left; |
||||
width:100%; |
||||
overflow:hidden; |
||||
font-size:12px; |
||||
} |
||||
.subNav div { |
||||
clear:left; |
||||
float:left; |
||||
padding:0 0 5px 6px; |
||||
text-transform:uppercase; |
||||
} |
||||
ul.navList, ul.subNavList { |
||||
float:left; |
||||
margin:0 25px 0 0; |
||||
padding:0; |
||||
} |
||||
ul.navList li{ |
||||
list-style:none; |
||||
float:left; |
||||
padding: 5px 6px; |
||||
text-transform:uppercase; |
||||
} |
||||
ul.subNavList li{ |
||||
list-style:none; |
||||
float:left; |
||||
} |
||||
.topNav a:link, .topNav a:active, .topNav a:visited, .bottomNav a:link, .bottomNav a:active, .bottomNav a:visited { |
||||
color:#FFFFFF; |
||||
text-decoration:none; |
||||
text-transform:uppercase; |
||||
} |
||||
.topNav a:hover, .bottomNav a:hover { |
||||
text-decoration:none; |
||||
color:#bb7a2a; |
||||
text-transform:uppercase; |
||||
} |
||||
.navBarCell1Rev { |
||||
background-color:#F8981D; |
||||
color:#253441; |
||||
margin: auto 5px; |
||||
} |
||||
.skipNav { |
||||
position:absolute; |
||||
top:auto; |
||||
left:-9999px; |
||||
overflow:hidden; |
||||
} |
||||
/* |
||||
Page header and footer styles |
||||
*/ |
||||
.header, .footer { |
||||
clear:both; |
||||
margin:0 20px; |
||||
padding:5px 0 0 0; |
||||
} |
||||
.indexHeader { |
||||
margin:10px; |
||||
position:relative; |
||||
} |
||||
.indexHeader span{ |
||||
margin-right:15px; |
||||
} |
||||
.indexHeader h1 { |
||||
font-size:13px; |
||||
} |
||||
.title { |
||||
color:#2c4557; |
||||
margin:10px 0; |
||||
} |
||||
.subTitle { |
||||
margin:5px 0 0 0; |
||||
} |
||||
.header ul { |
||||
margin:0 0 15px 0; |
||||
padding:0; |
||||
} |
||||
.footer ul { |
||||
margin:20px 0 5px 0; |
||||
} |
||||
.header ul li, .footer ul li { |
||||
list-style:none; |
||||
font-size:13px; |
||||
} |
||||
/* |
||||
Heading styles |
||||
*/ |
||||
div.details ul.blockList ul.blockList ul.blockList li.blockList h4, div.details ul.blockList ul.blockList ul.blockListLast li.blockList h4 { |
||||
background-color:#dee3e9; |
||||
border:1px solid #d0d9e0; |
||||
margin:0 0 6px -8px; |
||||
padding:7px 5px; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList li.blockList h3 { |
||||
background-color:#dee3e9; |
||||
border:1px solid #d0d9e0; |
||||
margin:0 0 6px -8px; |
||||
padding:7px 5px; |
||||
} |
||||
ul.blockList ul.blockList li.blockList h3 { |
||||
padding:0; |
||||
margin:15px 0; |
||||
} |
||||
ul.blockList li.blockList h2 { |
||||
padding:0px 0 20px 0; |
||||
} |
||||
/* |
||||
Page layout container styles |
||||
*/ |
||||
.contentContainer, .sourceContainer, .classUseContainer, .serializedFormContainer, .constantValuesContainer { |
||||
clear:both; |
||||
padding:10px 20px; |
||||
position:relative; |
||||
} |
||||
.indexContainer { |
||||
margin:10px; |
||||
position:relative; |
||||
font-size:12px; |
||||
} |
||||
.indexContainer h2 { |
||||
font-size:13px; |
||||
padding:0 0 3px 0; |
||||
} |
||||
.indexContainer ul { |
||||
margin:0; |
||||
padding:0; |
||||
} |
||||
.indexContainer ul li { |
||||
list-style:none; |
||||
padding-top:2px; |
||||
} |
||||
.contentContainer .description dl dt, .contentContainer .details dl dt, .serializedFormContainer dl dt { |
||||
font-size:12px; |
||||
font-weight:bold; |
||||
margin:10px 0 0 0; |
||||
color:#4E4E4E; |
||||
} |
||||
.contentContainer .description dl dd, .contentContainer .details dl dd, .serializedFormContainer dl dd { |
||||
margin:5px 0 10px 0px; |
||||
font-size:14px; |
||||
font-family:'DejaVu Sans Mono',monospace; |
||||
} |
||||
.serializedFormContainer dl.nameValue dt { |
||||
margin-left:1px; |
||||
font-size:1.1em; |
||||
display:inline; |
||||
font-weight:bold; |
||||
} |
||||
.serializedFormContainer dl.nameValue dd { |
||||
margin:0 0 0 1px; |
||||
font-size:1.1em; |
||||
display:inline; |
||||
} |
||||
/* |
||||
List styles |
||||
*/ |
||||
ul.horizontal li { |
||||
display:inline; |
||||
font-size:0.9em; |
||||
} |
||||
ul.inheritance { |
||||
margin:0; |
||||
padding:0; |
||||
} |
||||
ul.inheritance li { |
||||
display:inline; |
||||
list-style:none; |
||||
} |
||||
ul.inheritance li ul.inheritance { |
||||
margin-left:15px; |
||||
padding-left:15px; |
||||
padding-top:1px; |
||||
} |
||||
ul.blockList, ul.blockListLast { |
||||
margin:10px 0 10px 0; |
||||
padding:0; |
||||
} |
||||
ul.blockList li.blockList, ul.blockListLast li.blockList { |
||||
list-style:none; |
||||
margin-bottom:15px; |
||||
line-height:1.4; |
||||
} |
||||
ul.blockList ul.blockList li.blockList, ul.blockList ul.blockListLast li.blockList { |
||||
padding:0px 20px 5px 10px; |
||||
border:1px solid #ededed; |
||||
background-color:#f8f8f8; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList li.blockList, ul.blockList ul.blockList ul.blockListLast li.blockList { |
||||
padding:0 0 5px 8px; |
||||
background-color:#ffffff; |
||||
border:none; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList ul.blockList li.blockList { |
||||
margin-left:0; |
||||
padding-left:0; |
||||
padding-bottom:15px; |
||||
border:none; |
||||
} |
||||
ul.blockList ul.blockList ul.blockList ul.blockList li.blockListLast { |
||||
list-style:none; |
||||
border-bottom:none; |
||||
padding-bottom:0; |
||||
} |
||||
table tr td dl, table tr td dl dt, table tr td dl dd { |
||||
margin-top:0; |
||||
margin-bottom:1px; |
||||
} |
||||
/* |
||||
Table styles |
||||
*/ |
||||
.overviewSummary, .memberSummary, .typeSummary, .useSummary, .constantsSummary, .deprecatedSummary { |
||||
width:100%; |
||||
border-left:1px solid #EEE; |
||||
border-right:1px solid #EEE; |
||||
border-bottom:1px solid #EEE; |
||||
} |
||||
.overviewSummary, .memberSummary { |
||||
padding:0px; |
||||
} |
||||
.overviewSummary caption, .memberSummary caption, .typeSummary caption, |
||||
.useSummary caption, .constantsSummary caption, .deprecatedSummary caption { |
||||
position:relative; |
||||
text-align:left; |
||||
background-repeat:no-repeat; |
||||
color:#253441; |
||||
font-weight:bold; |
||||
clear:none; |
||||
overflow:hidden; |
||||
padding:0px; |
||||
padding-top:10px; |
||||
padding-left:1px; |
||||
margin:0px; |
||||
white-space:pre; |
||||
} |
||||
.overviewSummary caption a:link, .memberSummary caption a:link, .typeSummary caption a:link, |
||||
.useSummary caption a:link, .constantsSummary caption a:link, .deprecatedSummary caption a:link, |
||||
.overviewSummary caption a:hover, .memberSummary caption a:hover, .typeSummary caption a:hover, |
||||
.useSummary caption a:hover, .constantsSummary caption a:hover, .deprecatedSummary caption a:hover, |
||||
.overviewSummary caption a:active, .memberSummary caption a:active, .typeSummary caption a:active, |
||||
.useSummary caption a:active, .constantsSummary caption a:active, .deprecatedSummary caption a:active, |
||||
.overviewSummary caption a:visited, .memberSummary caption a:visited, .typeSummary caption a:visited, |
||||
.useSummary caption a:visited, .constantsSummary caption a:visited, .deprecatedSummary caption a:visited { |
||||
color:#FFFFFF; |
||||
} |
||||
.overviewSummary caption span, .memberSummary caption span, .typeSummary caption span, |
||||
.useSummary caption span, .constantsSummary caption span, .deprecatedSummary caption span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
padding-bottom:7px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
border: none; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.activeTableTab span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
margin-right:3px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.tableTab span { |
||||
white-space:nowrap; |
||||
padding-top:5px; |
||||
padding-left:12px; |
||||
padding-right:12px; |
||||
margin-right:3px; |
||||
display:inline-block; |
||||
float:left; |
||||
background-color:#4D7A97; |
||||
height:16px; |
||||
} |
||||
.memberSummary caption span.tableTab, .memberSummary caption span.activeTableTab { |
||||
padding-top:0px; |
||||
padding-left:0px; |
||||
padding-right:0px; |
||||
background-image:none; |
||||
float:none; |
||||
display:inline; |
||||
} |
||||
.overviewSummary .tabEnd, .memberSummary .tabEnd, .typeSummary .tabEnd, |
||||
.useSummary .tabEnd, .constantsSummary .tabEnd, .deprecatedSummary .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
position:relative; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
} |
||||
.memberSummary .activeTableTab .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
margin-right:3px; |
||||
position:relative; |
||||
float:left; |
||||
background-color:#F8981D; |
||||
} |
||||
.memberSummary .tableTab .tabEnd { |
||||
display:none; |
||||
width:5px; |
||||
margin-right:3px; |
||||
position:relative; |
||||
background-color:#4D7A97; |
||||
float:left; |
||||
|
||||
} |
||||
.overviewSummary td, .memberSummary td, .typeSummary td, |
||||
.useSummary td, .constantsSummary td, .deprecatedSummary td { |
||||
text-align:left; |
||||
padding:0px 0px 12px 10px; |
||||
} |
||||
th.colOne, th.colFirst, th.colLast, .useSummary th, .constantsSummary th, |
||||
td.colOne, td.colFirst, td.colLast, .useSummary td, .constantsSummary td{ |
||||
vertical-align:top; |
||||
padding-right:0px; |
||||
padding-top:8px; |
||||
padding-bottom:3px; |
||||
} |
||||
th.colFirst, th.colLast, th.colOne, .constantsSummary th { |
||||
background:#dee3e9; |
||||
text-align:left; |
||||
padding:8px 3px 3px 7px; |
||||
} |
||||
td.colFirst, th.colFirst { |
||||
white-space:nowrap; |
||||
font-size:13px; |
||||
} |
||||
td.colLast, th.colLast { |
||||
font-size:13px; |
||||
} |
||||
td.colOne, th.colOne { |
||||
font-size:13px; |
||||
} |
||||
.overviewSummary td.colFirst, .overviewSummary th.colFirst, |
||||
.useSummary td.colFirst, .useSummary th.colFirst, |
||||
.overviewSummary td.colOne, .overviewSummary th.colOne, |
||||
.memberSummary td.colFirst, .memberSummary th.colFirst, |
||||
.memberSummary td.colOne, .memberSummary th.colOne, |
||||
.typeSummary td.colFirst{ |
||||
width:25%; |
||||
vertical-align:top; |
||||
} |
||||
td.colOne a:link, td.colOne a:active, td.colOne a:visited, td.colOne a:hover, td.colFirst a:link, td.colFirst a:active, td.colFirst a:visited, td.colFirst a:hover, td.colLast a:link, td.colLast a:active, td.colLast a:visited, td.colLast a:hover, .constantValuesContainer td a:link, .constantValuesContainer td a:active, .constantValuesContainer td a:visited, .constantValuesContainer td a:hover { |
||||
font-weight:bold; |
||||
} |
||||
.tableSubHeadingColor { |
||||
background-color:#EEEEFF; |
||||
} |
||||
.altColor { |
||||
background-color:#FFFFFF; |
||||
} |
||||
.rowColor { |
||||
background-color:#EEEEEF; |
||||
} |
||||
/* |
||||
Content styles |
||||
*/ |
||||
.description pre { |
||||
margin-top:0; |
||||
} |
||||
.deprecatedContent { |
||||
margin:0; |
||||
padding:10px 0; |
||||
} |
||||
.docSummary { |
||||
padding:0; |
||||
} |
||||
|
||||
ul.blockList ul.blockList ul.blockList li.blockList h3 { |
||||
font-style:normal; |
||||
} |
||||
|
||||
div.block { |
||||
font-size:14px; |
||||
font-family:'DejaVu Serif', Georgia, "Times New Roman", Times, serif; |
||||
} |
||||
|
||||
td.colLast div { |
||||
padding-top:0px; |
||||
} |
||||
|
||||
|
||||
td.colLast a { |
||||
padding-bottom:3px; |
||||
} |
||||
/* |
||||
Formatting effect styles |
||||
*/ |
||||
.sourceLineNo { |
||||
color:green; |
||||
padding:0 30px 0 0; |
||||
} |
||||
h1.hidden { |
||||
visibility:hidden; |
||||
overflow:hidden; |
||||
font-size:10px; |
||||
} |
||||
.block { |
||||
display:block; |
||||
margin:3px 10px 2px 0px; |
||||
color:#474747; |
||||
} |
||||
.deprecatedLabel, .descfrmTypeLabel, .memberNameLabel, .memberNameLink, |
||||
.overrideSpecifyLabel, .packageHierarchyLabel, .paramLabel, .returnLabel, |
||||
.seeLabel, .simpleTagLabel, .throwsLabel, .typeNameLabel, .typeNameLink { |
||||
font-weight:bold; |
||||
} |
||||
.deprecationComment, .emphasizedPhrase, .interfaceName { |
||||
font-style:italic; |
||||
} |
||||
|
||||
div.block div.block span.deprecationComment, div.block div.block span.emphasizedPhrase, |
||||
div.block div.block span.interfaceName { |
||||
font-style:normal; |
||||
} |
||||
|
||||
div.contentContainer ul.blockList li.blockList h2{ |
||||
padding-bottom:0px; |
||||
} |
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,251 @@ |
||||
<?xml version="1.0" encoding="UTF-8"?> |
||||
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0" |
||||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
||||
<modelVersion>4.0.0</modelVersion> |
||||
<parent> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>DigitalLaboratoryPlatform</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</parent> |
||||
|
||||
<artifactId>dlp-entrustment</artifactId> |
||||
<packaging>jar</packaging> |
||||
|
||||
<description>送检受理</description> |
||||
|
||||
<dependencies> |
||||
<!--注册中心客户端--> |
||||
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-discovery --> |
||||
<dependency> |
||||
<groupId>com.alibaba.cloud</groupId> |
||||
<artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId> |
||||
<version>2021.1</version> |
||||
</dependency> |
||||
|
||||
<!--配置中心客户端--> |
||||
<!-- https://mvnrepository.com/artifact/com.alibaba.cloud/spring-cloud-starter-alibaba-nacos-config --> |
||||
<dependency> |
||||
<groupId>com.alibaba.cloud</groupId> |
||||
<artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId> |
||||
<version>2021.1</version> |
||||
</dependency> |
||||
|
||||
<!-- swagger --> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-swagger</artifactId> |
||||
</dependency> |
||||
|
||||
<!--断路器依赖--> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-feign</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
|
||||
<!--security--> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-security</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
<!--JDBC相关--> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-jdbc</artifactId> |
||||
</dependency> |
||||
|
||||
<!-- 数据库 mysql依赖 --> |
||||
<!-- https://mvnrepository.com/artifact/mysql/mysql-connector-java --> |
||||
<dependency> |
||||
<groupId>mysql</groupId> |
||||
<artifactId>mysql-connector-java</artifactId> |
||||
<version>${mysql-connector-java.version}</version> |
||||
</dependency> |
||||
<!--undertow容器--> |
||||
<dependency> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-starter-undertow</artifactId> |
||||
</dependency> |
||||
<!-- log --> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-log</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
<!-- 业务数据的依赖 --> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-admin-api</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
<!-- 污水系统api--> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-sewage-api</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
|
||||
<!-- 第三方系统集成api工具类--> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-othersys-api</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-oss</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-remote-word2pdf</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
<scope>compile</scope> |
||||
</dependency> |
||||
|
||||
<!-- https://mvnrepository.com/artifact/cglib/cglib-nodep --> |
||||
<!-- 主要使用 beanToMap --> |
||||
<dependency> |
||||
<groupId>cglib</groupId> |
||||
<artifactId>cglib-nodep</artifactId> |
||||
<version>3.3.0</version> |
||||
</dependency> |
||||
|
||||
<!-- poi-tl word 模板处理器 http://deepoove.com/poi-tl --> |
||||
<dependency> |
||||
<groupId>com.deepoove</groupId> |
||||
<artifactId>poi-tl</artifactId> |
||||
<version>1.12.0</version> |
||||
</dependency> |
||||
<!-- Spring EL表达式作为模板处理语言 --> |
||||
<!-- <dependency>--> |
||||
<!-- <groupId>org.springframework</groupId>--> |
||||
<!-- <artifactId>spring-expression</artifactId>--> |
||||
<!-- <version>5.3.18</version>--> |
||||
<!-- </dependency>--> |
||||
<!-- https://mvnrepository.com/artifact/commons-io/commons-io --> |
||||
<dependency> |
||||
<groupId>commons-io</groupId> |
||||
<artifactId>commons-io</artifactId> |
||||
<version>2.11.0</version> |
||||
</dependency> |
||||
|
||||
<dependency> |
||||
<groupId>fr.opensagres.xdocreport</groupId> |
||||
<artifactId>fr.opensagres.poi.xwpf.converter.pdf-gae</artifactId> |
||||
<version>2.0.3</version> |
||||
</dependency> |
||||
|
||||
<!-- mybatis 字段类型处理器TypeHandler --> |
||||
<dependency> |
||||
<groupId>com.fasterxml.jackson.datatype</groupId> |
||||
<artifactId>jackson-datatype-jsr310</artifactId> |
||||
<version>2.12.5</version> |
||||
</dependency> |
||||
<!-- fastjson --> |
||||
<dependency> |
||||
<groupId>com.alibaba</groupId> |
||||
<artifactId>fastjson</artifactId> |
||||
<version>1.2.9</version> |
||||
</dependency> |
||||
|
||||
<!-- 模板引擎: 生成打印标签 --> |
||||
<dependency> |
||||
<artifactId>velocity</artifactId> |
||||
<groupId>org.apache.velocity</groupId> |
||||
<version>${velocity.version}</version> |
||||
</dependency> |
||||
|
||||
<!-- for MockMultipartFile--> |
||||
<dependency> |
||||
<groupId>org.springframework</groupId> |
||||
<artifactId>spring-test</artifactId> |
||||
</dependency> |
||||
|
||||
<!-- seata分布式事务--> |
||||
<dependency> |
||||
<groupId>digital.laboratory.platform</groupId> |
||||
<artifactId>dlp-common-seata</artifactId> |
||||
<version>2022.10.11-snapshots</version> |
||||
</dependency> |
||||
|
||||
|
||||
|
||||
</dependencies> |
||||
|
||||
|
||||
|
||||
<build> |
||||
<plugins> |
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-compiler-plugin</artifactId> |
||||
<configuration> |
||||
<compilerArgument>-Xlint:unchecked</compilerArgument> |
||||
</configuration> |
||||
<version>3.8.1</version> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>org.springframework.boot</groupId> |
||||
<artifactId>spring-boot-maven-plugin</artifactId> |
||||
</plugin> |
||||
<plugin> |
||||
<groupId>io.fabric8</groupId> |
||||
<artifactId>docker-maven-plugin</artifactId> |
||||
</plugin> |
||||
|
||||
<plugin> |
||||
<groupId>org.codehaus.mojo</groupId> |
||||
<artifactId>build-helper-maven-plugin</artifactId> |
||||
<version>3.0.0</version> |
||||
<executions> |
||||
<execution> |
||||
<id>timestamp-property</id> |
||||
<goals> |
||||
<goal>timestamp-property</goal> |
||||
</goals> |
||||
<configuration> |
||||
<name>timestamp</name> |
||||
<pattern>yyyy-MM-dd HH:mm:ss</pattern> |
||||
<locale>zh_CN</locale> |
||||
<timeZone>Asia/Shanghai</timeZone> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
|
||||
<plugin> |
||||
<groupId>org.apache.maven.plugins</groupId> |
||||
<artifactId>maven-resources-plugin</artifactId> |
||||
<version>3.1.0</version> |
||||
<executions> |
||||
<execution> |
||||
<id>copy-resource-one</id> |
||||
<phase>install</phase> |
||||
<goals> |
||||
<goal>copy-resources</goal> |
||||
</goals> |
||||
<configuration> |
||||
<outputDirectory>${basedir}/../../out</outputDirectory> |
||||
<resources> |
||||
<resource> |
||||
<directory>${basedir}/target</directory> |
||||
<includes> |
||||
<include>${project.artifactId}.jar</include> |
||||
</includes> |
||||
</resource> |
||||
</resources> |
||||
</configuration> |
||||
</execution> |
||||
</executions> |
||||
</plugin> |
||||
|
||||
</plugins> |
||||
</build> |
||||
|
||||
</project> |
||||
@ -0,0 +1,20 @@ |
||||
package digital.laboratory.platform.entrustment; |
||||
|
||||
import digital.laboratory.platform.common.feign.annotation.EnableDLPFeignClients; |
||||
import digital.laboratory.platform.common.security.annotation.EnableDLPResourceServer; |
||||
import digital.laboratory.platform.common.swagger.annotation.EnableDLPSwagger2; |
||||
import org.springframework.boot.SpringApplication; |
||||
import org.springframework.boot.autoconfigure.SpringBootApplication; |
||||
import org.springframework.cloud.client.discovery.EnableDiscoveryClient; |
||||
|
||||
@EnableDLPSwagger2 |
||||
@EnableDLPFeignClients |
||||
@EnableDiscoveryClient |
||||
@EnableDLPResourceServer |
||||
@SpringBootApplication(scanBasePackages="digital.laboratory.platform") |
||||
public class EntrustmentApplication { |
||||
public static void main(String[] args) { |
||||
SpringApplication.run(EntrustmentApplication.class, args); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,37 @@ |
||||
package digital.laboratory.platform.entrustment.Interceptor; |
||||
|
||||
import feign.RequestInterceptor; |
||||
import feign.RequestTemplate; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.security.core.Authentication; |
||||
import org.springframework.security.core.context.SecurityContext; |
||||
import org.springframework.security.core.context.SecurityContextHolder; |
||||
import org.springframework.security.oauth2.provider.authentication.OAuth2AuthenticationDetails; |
||||
|
||||
/** |
||||
* Feign 请求拦截器 |
||||
* Feign Client 向业务系统发出请求的时候, 把 Token 带上, 以用户自己的身份调用业务系统。 |
||||
* 目的是在业务系统中识别用户是谁, 允许或禁止用户进行对应的操作。 |
||||
*/ |
||||
|
||||
|
||||
@Configuration |
||||
public class FeignOauth2RequestInterceptor implements RequestInterceptor { |
||||
|
||||
private final String AUTHORIZATION_HEADER = "Authorization"; |
||||
private final String BEARER_TOKEN_TYPE = "Bearer"; |
||||
|
||||
@Override |
||||
public void apply(RequestTemplate requestTemplate) { |
||||
System.out.println(String.format("dlp-entrustment, FeignOauth2RequestInterceptor()...")); |
||||
SecurityContext securityContext = SecurityContextHolder.getContext(); |
||||
Authentication authentication = securityContext.getAuthentication(); |
||||
if (authentication != null && authentication.getDetails() instanceof OAuth2AuthenticationDetails) { |
||||
OAuth2AuthenticationDetails details = (OAuth2AuthenticationDetails) authentication.getDetails(); |
||||
System.out.println(String.format("FeignOauth2RequestInterceptor() Authorization, token=%s", details.getTokenValue())); |
||||
requestTemplate.header(AUTHORIZATION_HEADER, String.format("%s %s", BEARER_TOKEN_TYPE, details.getTokenValue())); |
||||
} |
||||
|
||||
} |
||||
} |
||||
|
||||
@ -0,0 +1,44 @@ |
||||
package digital.laboratory.platform.entrustment.Interceptor; |
||||
|
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
import org.springframework.stereotype.Component; |
||||
import org.springframework.web.servlet.HandlerInterceptor; |
||||
|
||||
import javax.servlet.http.HttpServletRequest; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
|
||||
/** |
||||
* URL拦截, 做对应处理 |
||||
* |
||||
*/ |
||||
@Component |
||||
public class URLInterceptor implements HandlerInterceptor { |
||||
|
||||
private static final Logger logger = LoggerFactory.getLogger(URLInterceptor.class); |
||||
|
||||
/** |
||||
* 请求前置处理(后置处理同理) |
||||
* |
||||
* @param request |
||||
* @param response |
||||
* @param handler |
||||
* @return boolean |
||||
*/ |
||||
@Override |
||||
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception { |
||||
String path = request.getServletPath(); |
||||
System.out.println(String.format("(entrustment 中的URL拦截) Request ---> Path=%s", path)); |
||||
return true; |
||||
// logger.info(path); |
||||
// if (path.matches("xxxxx")) { |
||||
// logger.info("requestUrl: {}", path); |
||||
// // 进行前置处理 |
||||
// return true; |
||||
// // 或者 return false; 禁用某些请求 |
||||
// } else { |
||||
// return true; |
||||
// } |
||||
} |
||||
} |
||||
|
||||
@ -0,0 +1,23 @@ |
||||
package digital.laboratory.platform.entrustment.Interceptor; |
||||
|
||||
import org.springframework.beans.factory.annotation.Autowired; |
||||
import org.springframework.context.annotation.Configuration; |
||||
import org.springframework.web.servlet.config.annotation.InterceptorRegistry; |
||||
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer; |
||||
|
||||
/** |
||||
* 拦截器注入 |
||||
* |
||||
*/ |
||||
@Configuration |
||||
public class WebConfig implements WebMvcConfigurer { |
||||
|
||||
@Autowired |
||||
private URLInterceptor urlInterceptor; |
||||
|
||||
@Override |
||||
public void addInterceptors(InterceptorRegistry registry){ |
||||
registry.addInterceptor(urlInterceptor); |
||||
} |
||||
} |
||||
|
||||
@ -0,0 +1,57 @@ |
||||
package digital.laboratory.platform.entrustment.config; |
||||
|
||||
import com.alibaba.fastjson.JSON; |
||||
import com.baomidou.mybatisplus.core.toolkit.StringUtils; |
||||
import org.apache.ibatis.type.BaseTypeHandler; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
|
||||
import java.sql.CallableStatement; |
||||
import java.sql.PreparedStatement; |
||||
import java.sql.ResultSet; |
||||
import java.sql.SQLException; |
||||
import java.util.List; |
||||
|
||||
public abstract class BaseMybatisList2JsonHandler<T> extends BaseTypeHandler<List<T>> { |
||||
|
||||
@Override |
||||
public void setNonNullParameter(PreparedStatement ps, int i, List<T> parameter, JdbcType jdbcType) throws SQLException { |
||||
ps.setString(i, JSON.toJSONString(parameter)); |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getNullableResult(ResultSet rs, String columnName) |
||||
throws SQLException { |
||||
String data = rs.getString(columnName); |
||||
List<T> r = StringUtils.isBlank(data) ? null : JSON.parseArray(data, (Class<T>) getRawType()); |
||||
return r; |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getNullableResult(ResultSet rs, int columnIndex) throws SQLException { |
||||
String data = rs.getString(columnIndex); |
||||
return StringUtils.isBlank(data) ? null : JSON.parseArray(data, (Class<T>) getRawType()); |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getNullableResult(CallableStatement cs, int columnIndex) |
||||
throws SQLException { |
||||
String data = cs.getString(columnIndex); |
||||
return StringUtils.isBlank(data) ? null : JSON.parseArray(data, (Class<T>) getRawType()); |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getResult(ResultSet rs, String columnName) throws SQLException { |
||||
List<T> r = super.getResult(rs, columnName); |
||||
return r; |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getResult(ResultSet rs, int columnIndex) throws SQLException { |
||||
return super.getResult(rs, columnIndex); |
||||
} |
||||
|
||||
@Override |
||||
public List<T> getResult(CallableStatement cs, int columnIndex) throws SQLException { |
||||
return super.getResult(cs, columnIndex); |
||||
} |
||||
} |
||||
@ -0,0 +1,60 @@ |
||||
package digital.laboratory.platform.entrustment.config; |
||||
|
||||
import com.alibaba.fastjson.JSON; |
||||
import com.alibaba.fastjson.TypeReference; |
||||
import com.baomidou.mybatisplus.core.toolkit.StringUtils; |
||||
import org.apache.ibatis.type.BaseTypeHandler; |
||||
import org.apache.ibatis.type.JdbcType; |
||||
|
||||
import java.sql.CallableStatement; |
||||
import java.sql.PreparedStatement; |
||||
import java.sql.ResultSet; |
||||
import java.sql.SQLException; |
||||
import java.util.HashMap; |
||||
|
||||
public abstract class BaseMybatisMap2JsonHandler<T> extends BaseTypeHandler<HashMap<String, T>> { |
||||
|
||||
protected abstract TypeReference getType(); |
||||
// typeReference = new InstructionBoHashMap();
|
||||
|
||||
@Override |
||||
public void setNonNullParameter(PreparedStatement ps, int i, HashMap<String, T> parameter, JdbcType jdbcType) throws SQLException { |
||||
ps.setString(i, JSON.toJSONString(parameter)); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getNullableResult(ResultSet rs, String columnName) |
||||
throws SQLException { |
||||
String data = rs.getString(columnName); |
||||
|
||||
return StringUtils.isBlank(data) ? null : (HashMap<String, T>)JSON.parseObject(data, getType()); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getNullableResult(ResultSet rs, int columnIndex) throws SQLException { |
||||
String data = rs.getString(columnIndex); |
||||
return StringUtils.isBlank(data) ? null : (HashMap<String, T>)JSON.parseObject(data, getType()); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getNullableResult(CallableStatement cs, int columnIndex) |
||||
throws SQLException { |
||||
String data = cs.getString(columnIndex); |
||||
return StringUtils.isBlank(data) ? null : (HashMap<String, T>)JSON.parseObject(data, getType()); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getResult(ResultSet rs, String columnName) throws SQLException { |
||||
return super.getResult(rs, columnName); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getResult(ResultSet rs, int columnIndex) throws SQLException { |
||||
return super.getResult(rs, columnIndex); |
||||
} |
||||
|
||||
@Override |
||||
public HashMap<String, T> getResult(CallableStatement cs, int columnIndex) throws SQLException { |
||||
return super.getResult(cs, columnIndex); |
||||
} |
||||
} |
||||
@ -0,0 +1,72 @@ |
||||
package digital.laboratory.platform.entrustment.config; |
||||
|
||||
import digital.laboratory.platform.common.core.util.R; |
||||
import org.springframework.http.HttpStatus; |
||||
import org.springframework.http.ResponseEntity; |
||||
import org.springframework.web.bind.annotation.ControllerAdvice; |
||||
import org.springframework.web.bind.annotation.ExceptionHandler; |
||||
import org.springframework.web.bind.annotation.ResponseBody; |
||||
import org.springframework.web.servlet.NoHandlerFoundException; |
||||
|
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
|
||||
/** |
||||
* Spring Boot 自定义异常处理 |
||||
* 所有的异常都派生自 Exception, 如果我们定义了某个异常的处理 Handler, Spring Boot 会调用用对应的异常 Handler, 否则会调用 Exception Handler. |
||||
* 有一个前提是在 application.yml 中定义两个属性, 让 springboot 在没有找到 url 的处理器触发异常; 让 springboot 不要自作多情加 /error 这个 map |
||||
* mvc: |
||||
* throw-exception-if-no-handler-found: true |
||||
* web: |
||||
* resources: |
||||
* add-mappings: false |
||||
* 只有如此, springboot 才会触发异常。 |
||||
* |
||||
*/ |
||||
|
||||
|
||||
@ControllerAdvice |
||||
public class ErrorController { |
||||
|
||||
@ExceptionHandler(Exception.class) |
||||
@ResponseBody |
||||
public ResponseEntity error(Exception ex) { |
||||
System.out.println("ErrorController.error Exception"); |
||||
ex.printStackTrace(); |
||||
Map<String, Object> map = new HashMap<>(); |
||||
map.put("Exception", ex.getClass().getName()); |
||||
map.put("message", ex.getMessage()); |
||||
map.put("localizedMessage", ex.getLocalizedMessage()); |
||||
map.put("toString", ex.toString()); |
||||
|
||||
return ResponseEntity.status(HttpStatus.INTERNAL_SERVER_ERROR).body(R.failed(map, "发生异常 "+ex.getMessage())); |
||||
} |
||||
|
||||
|
||||
@ExceptionHandler(value = {NoHandlerFoundException.class}) |
||||
@ResponseBody |
||||
public ResponseEntity error(NoHandlerFoundException ex) { |
||||
//System.out.println("ErrorController.error NoHandlerFoundException");
|
||||
//ex.printStackTrace();
|
||||
// //ex.getRawStatusCode()
|
||||
Map<String, Object> map = new HashMap<>(); |
||||
map.put("Exception", ex.getClass().getName()); |
||||
map.put("message", ex.getMessage()); |
||||
map.put("localizedMessage", ex.getLocalizedMessage()); |
||||
map.put("requestURL", ex.getRequestURL()); |
||||
map.put("httpMethod", ex.getHttpMethod()); |
||||
// map.put("cause", ex.getCause().toString());
|
||||
map.put("toString", ex.toString()); |
||||
// map.put("comments", "单独的 ExceptionHandler, 系统管理捕获的全局异常 NoHandlerFoundException");
|
||||
// //return map;
|
||||
// //ResponseEntity<Map<String,Object>> r = new ResponseEntity<Map<String,Object>>(map, HttpStatus.INTERNAL_SERVER_ERROR);
|
||||
// //ResponseEntity<Map<String,Object>> r = new ResponseEntity<Map<String,Object>>(map, HttpStatus.NOT_FOUND);
|
||||
// //return r;
|
||||
// return ResponseEntity.status(HttpStatus.NOT_FOUND).body(map);
|
||||
|
||||
return ResponseEntity.status(HttpStatus.NOT_FOUND).body(R.failed(map, "没有找到")); |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue