You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I found the refID of ReflectObject is as a key in tcl variable set.
When I fetch the java object from command, and passing them into a function which have variable arguments. It will use ReflectObject::toString, and express like java0x?? in string type.
set dbo [get_object];
change_name dbo -name "new_name";
procchange_name_dbo {args} {
# args = {java0x01 -name "new_name"};# How do I get the java object from string `java0x01`;
}
If I use wrong way, please correct me.
Thanks.
The text was updated successfully, but these errors were encountered:
Hi,
I found the
refID
ofReflectObject
is as a key in tcl variable set.When I fetch the java object from command, and passing them into a function which have variable arguments. It will use
ReflectObject::toString
, and express likejava0x??
in string type.If I use wrong way, please correct me.
Thanks.
The text was updated successfully, but these errors were encountered: