*/
public JLPCActor newActor(Mailbox mailbox, Actor parent)
throws Exception {
TupleJid tj = (TupleJid) super.newActor(mailbox, parent);
if (tupleFactories == null) {
Factory f = (Factory) parent.getMatch(Factory.class);
ActorFactory[] afs = new ActorFactory[actorTypes.length];
int i = 0;
while (i < actorTypes.length) {
afs[i] = f.getActorFactory(actorTypes[i]);
i += 1;
}
tupleFactories = afs;
}
tj.tupleFactories = tupleFactories;