Package com.threerings.parlor.client

Examples of com.threerings.parlor.client.ParlorDirector


    public TestClient (String username)
    {
        super(username);

        // create the handles on our various services
        _pardtr = new ParlorDirector(_ctx);

        // register ourselves as the invitation handler
        _pardtr.setInvitationHandler(this);
    }
View Full Code Here


        _client = new Client(null, RunQueue.AWT);

        // create our managers and directors
        _locdir = new LocationDirector(_ctx);
        _occdir = new OccupantDirector(_ctx);
        _pardtr = new ParlorDirector(_ctx);
        _msgmgr = new MessageManager(MESSAGE_MANAGER_PREFIX);
        _chatdir = new ChatDirector(_ctx, null);
    }
View Full Code Here

        // create our managers and directors
        _msgmgr = new MessageManager(getMessageManagerPrefix());
        _locdir = new LocationDirector(_ctx);
        _occdir = new OccupantDirector(_ctx);
        _pardtr = new ParlorDirector(_ctx);
        _chatdir = new ChatDirector(_ctx, null);

        // keep this for later
        _frame = frame;
View Full Code Here

TOP

Related Classes of com.threerings.parlor.client.ParlorDirector

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.