Files
narya/tests/src/java/com/threerings/crowd/client/JabberPanel.java
T
Michael Bayne c0a244cb8d Hold onto your hats kids, it's the biggest little refactor this side of the
Pecos. I'll sort out the per-project niggling bits in just a moment.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@4209 542714f4-19e9-0310-aa3c-eee0fc999fb1
2006-06-23 18:12:45 +00:00

41 lines
916 B
Java

//
// $Id$
package com.threerings.crowd.client;
import java.awt.BorderLayout;
import javax.swing.JPanel;
import com.threerings.crowd.data.PlaceObject;
import com.threerings.crowd.util.CrowdContext;
// import com.threerings.micasa.client.ChatPanel;
// import com.threerings.micasa.client.OccupantList;
/**
* Displays a simple chat view.
*/
public class JabberPanel extends JPanel
implements PlaceView
{
public JabberPanel (CrowdContext ctx)
{
_ctx = ctx;
setLayout(new BorderLayout());
// add(new ChatPanel(ctx), BorderLayout.CENTER);
// add(new OccupantList(ctx), BorderLayout.EAST);
}
// documentation inherited from interface PlaceView
public void willEnterPlace (PlaceObject plobj)
{
}
// documentation inherited from interface PlaceView
public void didLeavePlace (PlaceObject plobj)
{
}
protected CrowdContext _ctx;
}