home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Peanuts NeXT Software Archives
/
Peanuts-2.iso
/
Developer
/
webobjects
/
extensions
/
win-nt
/
WOPerl-lite-10e7.exe
/
Examples
/
WOPerl
/
ObjTclHello
/
Hello.wo
/
Hello.objtcl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1996-08-09
|
400 b
|
23 lines
# $Id: Hello.objtcl,v 1.1 1996/07/26 05:18:16 pedja Exp $
class Hello WOComponentController {
nameString
} {
method void -dealloc {
$nameString release
super dealloc
}
method NSString -nameString { return $nameString }
method void -setNameString: n {
rrset nameString $n
}
method -goHome {
return [[WOApplication sharedInstance] pageWithName: [@ Main]]
}
}
# EOF