home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 1998 October
/
PCWorld_1998-10_cd.bin
/
software
/
prehled
/
komix
/
DATA.Z
/
rt_getset.tcl
< prev
next >
Wrap
Text File
|
1997-10-06
|
435b
|
25 lines
global hasGetSetMethod
set hasGetSetMethod 1
global attribAccessPropName
set attribAccessPropName "attrib_access"
global methodAccessPropName
set methodAccessPropName "method_access"
proc isGetMethod {mthd attr} {
if {"get_[$attr name]" == [$mthd name]} {
return 1
} else {
return 0
}
}
proc isSetMethod {mthd attr} {
if {"set_[$attr name]" == [$mthd name] } {
return 1
} else {
return 0
}
}