Package org.agilewiki.jactor.factory

Examples of org.agilewiki.jactor.factory.Factory


     */
    public JLPCActor newActor(Mailbox mailbox, Actor parent)
            throws Exception {
        StringBMapJid imj = (StringBMapJid) super.newActor(mailbox, parent);
        if (valueFactory == null) {
            Factory f = (Factory) parent.getMatch(Factory.class);
            valueFactory = f.getActorFactory(valueType);
        }
        imj.valueFactory = valueFactory;
        imj.nodeCapacity = nodeCapacity;
        imj.isRoot = isRoot;
        imj.init();
View Full Code Here


     */
    public JLPCActor newActor(Mailbox mailbox, Actor parent)
            throws Exception {
        BListJid lj = (BListJid) super.newActor(mailbox, parent);
        if (entryFactory == null) {
            Factory f = (Factory) parent.getMatch(Factory.class);
            entryFactory = f.getActorFactory(entryType);
        }
        lj.entryFactory = entryFactory;
        lj.nodeCapacity = nodeCapacity;
        lj.isRoot = isRoot;
        lj.init();
View Full Code Here

TOP

Related Classes of org.agilewiki.jactor.factory.Factory

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.