summaryrefslogtreecommitdiff
path: root/sources/shared
diff options
context:
space:
mode:
Diffstat (limited to 'sources/shared')
-rw-r--r--sources/shared/CalendarCategory.java2
-rw-r--r--sources/shared/CalendarEvent.java2
-rw-r--r--sources/shared/Config.java2
-rw-r--r--sources/shared/DoCallback.java2
-rw-r--r--sources/shared/Main.java2
-rw-r--r--sources/shared/MyDate.java2
-rw-r--r--sources/shared/MyVector.java2
-rw-r--r--sources/shared/remotecall/ClientRequest.java2
-rw-r--r--sources/shared/remotecall/RemoteCall.java2
-rw-r--r--sources/shared/remotecall/ServerResponse.java2
10 files changed, 10 insertions, 10 deletions
diff --git a/sources/shared/CalendarCategory.java b/sources/shared/CalendarCategory.java
index 1e686d7..a6cb85e 100644
--- a/sources/shared/CalendarCategory.java
+++ b/sources/shared/CalendarCategory.java
@@ -18,7 +18,7 @@ import shared.remotecall.*;
/**
* This class specifies a category of the calendar events. Its wrapping a vector of references
* of all events of this category.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class CalendarCategory {
diff --git a/sources/shared/CalendarEvent.java b/sources/shared/CalendarEvent.java
index 8558d91..54c636a 100644
--- a/sources/shared/CalendarEvent.java
+++ b/sources/shared/CalendarEvent.java
@@ -14,7 +14,7 @@ import java.io.*;
/**
* This class specifies calendar events. Calendar event objects are the most used objects of the
* whole netcalendar suite.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class CalendarEvent implements Serializable {
diff --git a/sources/shared/Config.java b/sources/shared/Config.java
index 6211699..15a7591 100644
--- a/sources/shared/Config.java
+++ b/sources/shared/Config.java
@@ -11,7 +11,7 @@ import java.io.*;
/**
* This class makes all the configuration options available to all the other classes and objects
* of this program. Its reading and writing back the values from and to the netcalendar.conf file.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class Config {
diff --git a/sources/shared/DoCallback.java b/sources/shared/DoCallback.java
index f7f5122..d6e2e5c 100644
--- a/sources/shared/DoCallback.java
+++ b/sources/shared/DoCallback.java
@@ -6,7 +6,7 @@ package shared;
/**
* This interface specifies a callback routine.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public interface DoCallback {
diff --git a/sources/shared/Main.java b/sources/shared/Main.java
index 328867b..36edd81 100644
--- a/sources/shared/Main.java
+++ b/sources/shared/Main.java
@@ -13,7 +13,7 @@ import client.*;
* This class contains the static main method to start the program from.
* This class is also responsible for handling info ans status messages and
* the logging option of those messages.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class Main {
diff --git a/sources/shared/MyDate.java b/sources/shared/MyDate.java
index f1f54fe..1c13787 100644
--- a/sources/shared/MyDate.java
+++ b/sources/shared/MyDate.java
@@ -9,7 +9,7 @@ import java.util.*;
/**
* This class extends the standard Date class and customizes the toString method.
* This class also contains some helper methods to make the life easier.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class MyDate extends Date {
diff --git a/sources/shared/MyVector.java b/sources/shared/MyVector.java
index 3c98d72..f6c72dc 100644
--- a/sources/shared/MyVector.java
+++ b/sources/shared/MyVector.java
@@ -9,7 +9,7 @@ import java.util.Vector;
/**
* This class extends the standard Vector class and defined additional help methods.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class MyVector extends Vector {
diff --git a/sources/shared/remotecall/ClientRequest.java b/sources/shared/remotecall/ClientRequest.java
index 2622fa0..16fc52f 100644
--- a/sources/shared/remotecall/ClientRequest.java
+++ b/sources/shared/remotecall/ClientRequest.java
@@ -14,7 +14,7 @@ import shared.*;
* An object of this class is sent from the calendar client to the calendar server each time
* a request is made. This class encapsulates all the needed information so that the server can
* response with a serialized server response object.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class ClientRequest extends RemoteCall implements Serializable {
diff --git a/sources/shared/remotecall/RemoteCall.java b/sources/shared/remotecall/RemoteCall.java
index c95a3a2..3e7609d 100644
--- a/sources/shared/remotecall/RemoteCall.java
+++ b/sources/shared/remotecall/RemoteCall.java
@@ -9,7 +9,7 @@ import java.io.*;
/**
* This is the abstract base class of all other classes of the shared.remotecall package.
* Its defining some common methods.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public abstract class RemoteCall {
diff --git a/sources/shared/remotecall/ServerResponse.java b/sources/shared/remotecall/ServerResponse.java
index 9c5f961..9cd2cc8 100644
--- a/sources/shared/remotecall/ServerResponse.java
+++ b/sources/shared/remotecall/ServerResponse.java
@@ -10,7 +10,7 @@ import java.util.Vector;
/**
* This class represents a server response. A server response will sent from the calendar
* server to the calendar client if the client has sent a client request.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class ServerResponse extends RemoteCall implements Serializable {