On Wed, 12 Jan 2005 12:54:05 +0000
Seena <sm...@en...> wrote:
> Hello,
> How to call static methods in a java class from Tcl using Tcl Blend?
Use the java::call command defined in the java package.
Example:
set string [java::call Integer toBinaryString 5]
# This will print "result is 101", the binary representation of 5
cheers
Mo DeJong
|