renderChore function
example / testing chore ---------------------------------------------- Should show use-case of all Chore inner and outer methods.
Implementation
StringBuffer renderChore() {
print('-->-->-- renderChore :roll:box: -->-->--');
StringBuffer _retBuf = StringBuffer();
// devl:MIS temporary variables for to get this to work
String _actS = 'Action String';
var _roller;
var _aLog;
var _xList;
var _yChore;
var _zSignal;
// var superChore = new SuperChore();
BlanketChore ch =
BlanketChore('ChoreInRenderChore', 'renderChore', 'Testing-Chore');
ch.master = 'PackDawoMission';
print(ch.info);
print(ch.master);
topGrant(ch, _actS);
lowGrant(ch, _actS);
sideGrant(ch, _actS);
startChore(_roller, _aLog, _xList, _yChore, _zSignal);
doChore(ch, _actS);
uniteChore(ch, _actS);
endChore(ch, _actS);
// Enlisted class
eff.makeAllLists(':render:Chore:');
print(ch.info);
// Box is done like this:
print('-->-->-- joyChore;roll:box: myTimeMission -->-->--');
print(myTimeMission.joyChr.master);
/// devl:MIS Should get init and build bool values right
myTimeMission.joyChr.init(); // NO!! Must it be master??
myTimeMission.joyChr.roll();
myTimeMission.joyChr.master = 'MyTimeMission';
myTimeMission.joyChr.box(':choreRender:call:joyChr:box:');
print('-->-->-- chore ch.box ;roll:box: -->-->--');
// So we make here:
ch.roll();
ch.box(':dawoExample:call:joyChr:box:');
print('--<--<-- renderChore :roll:box: done --<--<--');
return _retBuf;
}