*
*
*/
public synchronized void setGameInfoEditorPaneSelectGame(int selectedRow) {
GameDescription GameRow = this.games.get(selectedRow);
java.net.URL imageURL = getClass().getClassLoader().getResource(
IConstants.Map.getPictureThumbnailPath(IConstants.Map
.getMapById(GameRow.getMapId()).toString()));
String txt = "<div align=\"center\">" + "<small>"
+ GameRow.getGameName() +"<br>("
+ IConstants.Map.getMapById(GameRow.getMapId()).toString()
+ ")</small><hr>"
+ "<table border='0' style='border-collapse: collapse' width='270' height='102' cellpadding='3'>"
+ "<tr>" + "<td width='122' valign='top' height='102'>"
+ "<center>"
+ " <img border='1' src='" + imageURL
+ "' width='100' height='100'></center></td>"
+ " <td valign='top' width='150' height='102'>"
+ " Player: "
+ GameRow.getCurrentPlayers() + " of "
+ GameRow.getMaxPlayers() + "<br>" + " Status: "
+ GameRow.getState() + "<br>" + " Min/Max: "
+ GameRow.getMinEloPoints() + " / " + GameRow.getMaxEloPoints()
+ "<br>" + " PW: " + GameRow.getPasswort() + "<br>" + " </td>"
+ "</tr>" + "</table>" + "</div>" + "<hr><b>Player in Game:</b> "
+ GameRow.getPlayer1() + " " + GameRow.getPlayer2() + " "
+ GameRow.getPlayer3() + " " + GameRow.getPlayer4() + "<br>"
+ "</font>";
this.setGameInfoEditorPaneHTML(txt);
}