|
In case you haven't followed other similar threaeds
the code and text of nick:
class A {
B b;
A(B bee){
b = bee;
Class A now can do and call methods of a class B on the name "b" thus:
b.doSomething(data);
In the class that has the button pushing stuff, we have a remarkably simple adjunct but that requires you grasp this first,.... then we still have to drive the controller class in a non-blocked manner using the clock I described in the don't ask me to which you refer.
|