Board.Java source file
|
import java.awt.*;
import java.awt.event.*;
class Board extends Frame
{
Board(String str)
{
super("Notice:");
setSize(300,100);
setLayout(new FlowLayout());
add(new Label(str));
addWindowListener(new WindowAdapter()
{
public void windowClosing(WindowEvent e) {
dispose();
}
});
show();
}
};
|
view the source file
By visiting the below links to the source code, you have agreed to our license agreement. The source codes are copyright and if you wish to use the source code or part of the engine of the game, you must obtain weiqi.com permission first. The final decision lies with weiqi.com .
Source for Board.Java
Source for Chess.Java
Source for Client.Java
Source for Server.Java
Source for ServerThread.Java
Source for User.Java
Source for Weiqi.Java
Source for WelcomeDialog.Java
/ <- right columm ends here >