joinclientframe.java
来自「Java mulitplayer strategy game. Adaptati」· Java 代码 · 共 53 行
JAVA
53 行
/*
* JoinClientFrame.java
*
* Created on 15 pa焏ziernik 2005, 10:16
*/
package net.sf.jawp.gui.client;
import net.sf.jawp.api.service.JAWPGameService;
import net.sf.jawp.gf.api.services.UserService;
/**
*
* @author jarek
*/
public class JoinClientFrame extends javax.swing.JInternalFrame
{
/**
*
*/
private static final long serialVersionUID = 1L;
private final JoinPanel joinPanel;
/** Creates new form JoinClientFrame */
public JoinClientFrame(final UserService<JAWPGameService> usrService)
{
this.joinPanel = new JoinPanel(null, usrService );
initComponents();
}
/** This method is called from within the constructor to
* initialize the form.
* WARNING: Do NOT modify this code. The content of this method is
* always regenerated by the Form Editor.
*/
// <editor-fold defaultstate="collapsed" desc=" Generated Code ">//GEN-BEGIN:initComponents
private void initComponents()
{
joinClientPanelView = this.joinPanel;
getContentPane().add(joinClientPanelView, java.awt.BorderLayout.CENTER);
pack();
}
// </editor-fold>//GEN-END:initComponents
// Variables declaration - do not modify//GEN-BEGIN:variables
private javax.swing.JPanel joinClientPanelView;
// End of variables declaration//GEN-END:variables
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?