reorganized the samples, again. Moved the programs that were more test cases to the unit test directory and repackaged the unit test directory.
This commit is contained in:
19
unittest/com/jacob/test/vbscript/ScriptTestErrEvents.java
Normal file
19
unittest/com/jacob/test/vbscript/ScriptTestErrEvents.java
Normal file
@@ -0,0 +1,19 @@
|
||||
|
||||
package com.jacob.test.vbscript;
|
||||
|
||||
import com.jacob.com.Variant;
|
||||
|
||||
/**
|
||||
* Extracted from ScriptTest so everyone can see this
|
||||
*/
|
||||
public class ScriptTestErrEvents {
|
||||
|
||||
public void Error(Variant[] args)
|
||||
{
|
||||
System.out.println("java callback for error!");
|
||||
}
|
||||
public void Timeout(Variant[] args)
|
||||
{
|
||||
System.out.println("java callback for error!");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user