Name: Anonymous 2007-09-30 22:30 ID:vwW1/T2w
Ok here is some sudo code is this actually possible to do in Java. And if so how thanks.
Class FooBar{
foo(){
mybutton = new mybutton();
while (true){
someMeathodTopauseLoopUntilActionPerformedIsCAlledINMyButton();
print(hi);
}
}
}
Class myButton{
ActionPerformed(){
restartLoopInFooBar();
}
}
Class FooBar{
foo(){
mybutton = new mybutton();
while (true){
someMeathodTopauseLoopUntilActionPerformedIsCAlledINMyButton();
print(hi);
}
}
}
Class myButton{
ActionPerformed(){
restartLoopInFooBar();
}
}