[Cherbot-commit] SF.net SVN: cherbot:[126] trunk/src/prj/net/sf/cherbot
Status: Alpha
Brought to you by:
christianhujer
|
From: <chr...@us...> - 2008-11-30 22:14:28
|
Revision: 126
http://cherbot.svn.sourceforge.net/cherbot/?rev=126&view=rev
Author: christianhujer
Date: 2008-11-30 22:14:26 +0000 (Sun, 30 Nov 2008)
Log Message:
-----------
Minor improvements, e.g. added missing serial versions.
Modified Paths:
--------------
trunk/src/prj/net/sf/cherbot/Clan.java
trunk/src/prj/net/sf/cherbot/ClanModule.java
trunk/src/prj/net/sf/cherbot/connection/CrossfireConnection.java
trunk/src/prj/net/sf/cherbot/connection/DaimoninConnection.java
trunk/src/prj/net/sf/cherbot/connection/IRCConnection.java
trunk/src/prj/net/sf/cherbot/redel/package-info.java
Modified: trunk/src/prj/net/sf/cherbot/Clan.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/Clan.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/Clan.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
@@ -8,8 +8,9 @@
import org.jetbrains.annotations.NotNull;
-/**
- * Created by IntelliJ IDEA.
+/** A Clan.
+ * Clans in Cherbot are maintained by Cherbot, not by the server.
+ * Because of that, clans are independent of the server and can be spread across multiple servers, even different games.
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
*/
public class Clan {
Modified: trunk/src/prj/net/sf/cherbot/ClanModule.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/ClanModule.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/ClanModule.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
@@ -12,6 +12,7 @@
/** Module for Clans.
* @author <a href="mailto:ch...@ri...">Christian Hujer</a>
+ * @see Clan
*/
public class ClanModule implements PersistentModule {
Modified: trunk/src/prj/net/sf/cherbot/connection/CrossfireConnection.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/connection/CrossfireConnection.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/connection/CrossfireConnection.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
@@ -17,6 +17,9 @@
*/
public class CrossfireConnection extends AbstractCFConnection {
+ /** Serial Version. */
+ private static final long serialVersionUID = 1L;
+
/** Default server host. */
//@NotNull public static final String DEFAULT_CROSSFIRE_HOST = "crossfire.metalforge.net";
@NotNull public static final String DEFAULT_CROSSFIRE_HOST = "127.0.0.1";
Modified: trunk/src/prj/net/sf/cherbot/connection/DaimoninConnection.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/connection/DaimoninConnection.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/connection/DaimoninConnection.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
@@ -17,6 +17,9 @@
*/
public class DaimoninConnection extends AbstractCFConnection {
+ /** Serial Version. */
+ private static final long serialVersionUID = 1L;
+
/** Default server host. */
//@NotNull public static final String DEFAULT_DAIMONIN_HOST = "daimonin.game-server.cc";
@NotNull public static final String DEFAULT_DAIMONIN_HOST = "127.0.0.1";
Modified: trunk/src/prj/net/sf/cherbot/connection/IRCConnection.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/connection/IRCConnection.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/connection/IRCConnection.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
@@ -28,6 +28,9 @@
*/
public class IRCConnection extends AbstractConnection {
+ /** Serial Version. */
+ private static final long serialVersionUID = 1L;
+
/** The default IRC port. */
public static final int DEFAULT_IRC_PORT = 6667;
Modified: trunk/src/prj/net/sf/cherbot/redel/package-info.java
===================================================================
--- trunk/src/prj/net/sf/cherbot/redel/package-info.java 2008-11-30 22:03:31 UTC (rev 125)
+++ trunk/src/prj/net/sf/cherbot/redel/package-info.java 2008-11-30 22:14:26 UTC (rev 126)
@@ -1,5 +1,5 @@
/*
- * Copyright © 2007, Christian Hujer and the CherBot developers. All Rights Reserved.
+ * Copyright © 2007 - 2008, Christian Hujer and the CherBot developers. All Rights Reserved.
* License: GNU General Public License v2.0 or newer.
* See file COPYING in the root directory of this project.
*/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|