Package org.agilewiki.jid.collection.vlenc.map

Examples of org.agilewiki.jid.collection.vlenc.map.StringMapJid


        return stringMapJid;
    }

    public ActorJid getActorJid(String key)
            throws Exception {
        StringMapJid smj = getStringMapJid();
        if (smj == null)
            return null;
        return (ActorJid) smj.kGet(key);
    }
View Full Code Here


        return (ActorJid) smj.kGet(key);
    }

    public ActorJid makeActorJid(String key)
            throws Exception {
        StringMapJid smj = makeStringMapJid();
        ActorJid actorJid = (ActorJid) smj.kGet(key);
        if (actorJid == null) {
            smj.kMake(key);
            actorJid = (ActorJid) smj.kGet(key);
        }
        return actorJid;
    }
View Full Code Here

TOP

Related Classes of org.agilewiki.jid.collection.vlenc.map.StringMapJid

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.