[jetrix-cvs] jetrix/src/java/net/jetrix/messages ClientInfoMessage.java,NONE,1.1
Brought to you by:
smanux
From: Emmanuel B. <sm...@us...> - 2005-04-26 19:59:34
|
Update of /cvsroot/jetrix/jetrix/src/java/net/jetrix/messages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5420/src/java/net/jetrix/messages Added Files: ClientInfoMessage.java Log Message: no message --- NEW FILE: ClientInfoMessage.java --- /** * Jetrix TetriNET Server * Copyright (C) 2005 Emmanuel Bourg * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package net.jetrix.messages; import net.jetrix.Message; /** * Information about the client (name & version). * * @author Emmanuel Bourg * @version $Revision: 1.1 $, $Date: 2005/04/26 19:59:24 $ */ public class ClientInfoMessage extends Message { private String name; private String version; public String getName() { return name; } public void setName(String name) { this.name = name; } public String getVersion() { return version; } public void setVersion(String version) { this.version = version; } } |