SF1570270 Proxy unhook detatched threads.

SF1538011 toString() not compliant, large ripple into toXXX() methods
SF1478172 Variant jni methods public without protection.  Now JNI methods behind java methods
This commit is contained in:
clay_shooter
2006-10-04 03:18:59 +00:00
parent a50685d412
commit 0b16b2eeae
14 changed files with 1306 additions and 738 deletions

View File

@@ -180,7 +180,7 @@ public class ActiveXComponent extends Dispatch {
* @return boolean value of property
*/
public boolean getPropertyAsBoolean(String propertyName){
return Dispatch.get(this, propertyName).toBoolean();
return Dispatch.get(this, propertyName).getBoolean();
}
/**
@@ -189,7 +189,7 @@ public class ActiveXComponent extends Dispatch {
* @return byte value of property
*/
public byte getPropertyAsByte(String propertyName){
return Dispatch.get(this, propertyName).toByte();
return Dispatch.get(this, propertyName).getByte();
}
/**
@@ -208,7 +208,7 @@ public class ActiveXComponent extends Dispatch {
* @return the property value as an int
*/
public int getPropertyAsInt(String propertyName){
return Dispatch.get(this,propertyName).toInt();
return Dispatch.get(this,propertyName).getInt();
}
/**

File diff suppressed because it is too large Load Diff