summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-02-23 17:12:36 +0000
committerPaul Buetow <paul@buetow.org>2009-02-23 17:12:36 +0000
commitba46e76e7376fc94919933d16c3c5cf4a7beae4a (patch)
treed3b5959b2637f01ecbabbc75bb2798c74af2da5b
parentc83d9c9c92af88cb5a11fa3ade4138cfe526a3c9 (diff)
author buetow => author Paul C. Buetow
-rw-r--r--sources/client/CalendarTableCellRenderer.java2
-rw-r--r--sources/client/CalendarTableModel.java2
-rw-r--r--sources/client/LicenseWindow.java2
-rw-r--r--sources/client/NetCalendarClient.java2
-rw-r--r--sources/client/ServerRequester.java2
-rw-r--r--sources/client/SplashScreen.java2
-rw-r--r--sources/client/SubWindow.java4
-rw-r--r--sources/client/helper/DateSpinner.java2
-rw-r--r--sources/client/helper/GUIHelper.java2
-rw-r--r--sources/client/inputforms/AdvancedSearching.java2
-rw-r--r--sources/client/inputforms/CreateNewEvent.java2
-rw-r--r--sources/client/inputforms/EditExistingEvent.java2
-rw-r--r--sources/client/inputforms/InputForm.java2
-rw-r--r--sources/client/inputforms/Preferences.java2
-rw-r--r--sources/client/inputforms/RenameCategory.java2
-rw-r--r--sources/server/CalendarDatabase.java2
-rw-r--r--sources/server/CalendarFormatParser.java2
-rw-r--r--sources/server/NetCalendarServer.java2
-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
28 files changed, 29 insertions, 29 deletions
diff --git a/sources/client/CalendarTableCellRenderer.java b/sources/client/CalendarTableCellRenderer.java
index da8d02b..4266815 100644
--- a/sources/client/CalendarTableCellRenderer.java
+++ b/sources/client/CalendarTableCellRenderer.java
@@ -15,7 +15,7 @@ import shared.*;
/**
* This class is responsible for the rendering of the JTable of the client gui which contains
* all the events.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class CalendarTableCellRenderer extends DefaultTableCellRenderer {
private static final long serialVersionUID = 1L;
diff --git a/sources/client/CalendarTableModel.java b/sources/client/CalendarTableModel.java
index 20e7967..f55ff58 100644
--- a/sources/client/CalendarTableModel.java
+++ b/sources/client/CalendarTableModel.java
@@ -13,7 +13,7 @@ import shared.remotecall.*;
/**
* This class defined the table model of the JTable of the main calendar client window. All table
* data and most of the table actions, like sorting or updating the content, go trough this class.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class CalendarTableModel extends AbstractTableModel {
diff --git a/sources/client/LicenseWindow.java b/sources/client/LicenseWindow.java
index 73562c0..fcf3f4f 100644
--- a/sources/client/LicenseWindow.java
+++ b/sources/client/LicenseWindow.java
@@ -8,7 +8,7 @@ import shared.*;
/**
* This window simply shows an license message.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class LicenseWindow extends InfoWindow {
diff --git a/sources/client/NetCalendarClient.java b/sources/client/NetCalendarClient.java
index caed516..cfdaa29 100644
--- a/sources/client/NetCalendarClient.java
+++ b/sources/client/NetCalendarClient.java
@@ -20,7 +20,7 @@ import client.inputforms.*;
/**
* This is the main class of the client part of the netcalendar suite. It contains the main GUI.
* All subguis are created within this class.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class NetCalendarClient extends JFrame {
private static final long serialVersionUID = 1L;
diff --git a/sources/client/ServerRequester.java b/sources/client/ServerRequester.java
index 6ccb7ee..35135a4 100644
--- a/sources/client/ServerRequester.java
+++ b/sources/client/ServerRequester.java
@@ -20,7 +20,7 @@ import shared.remotecall.*;
/**
* This class only has static members. Its used for creating a client socket to connect and
* communicate with the calendar server.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class ServerRequester {
/**
diff --git a/sources/client/SplashScreen.java b/sources/client/SplashScreen.java
index ec33d3a..ec9f0a8 100644
--- a/sources/client/SplashScreen.java
+++ b/sources/client/SplashScreen.java
@@ -43,4 +43,4 @@ public class SplashScreen extends JWindow implements Runnable {
dispose();
}
-} \ No newline at end of file
+}
diff --git a/sources/client/SubWindow.java b/sources/client/SubWindow.java
index 36e9529..6525aa7 100644
--- a/sources/client/SubWindow.java
+++ b/sources/client/SubWindow.java
@@ -13,7 +13,7 @@ import javax.swing.*;
/**
* This is the base class for all subwindows of a main session window of
* the calendar client.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public abstract class SubWindow extends JFrame {
@@ -55,7 +55,7 @@ public abstract class SubWindow extends JFrame {
/**
* This private class is only needed for removing the current JFrame of the outer class
* from the NetCalendarClient object's frame Vector.
- * @author buetow
+ * @author Paul C. Buetow
*/
private class MyWindowListener implements WindowListener {
/*
diff --git a/sources/client/helper/DateSpinner.java b/sources/client/helper/DateSpinner.java
index 3683bc2..ed5ada1 100644
--- a/sources/client/helper/DateSpinner.java
+++ b/sources/client/helper/DateSpinner.java
@@ -13,7 +13,7 @@ import javax.swing.*;
/**
* This helper class helps to create a date spinner to edit Date objects.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class DateSpinner extends JComponent {
private final static long serialVersionUID = 1L;
diff --git a/sources/client/helper/GUIHelper.java b/sources/client/helper/GUIHelper.java
index a2de13a..ddf5155 100644
--- a/sources/client/helper/GUIHelper.java
+++ b/sources/client/helper/GUIHelper.java
@@ -13,7 +13,7 @@ import shared.*;
/**
* This helper class helps to create well arranged GUI components.
* Its creating form- or grid-style layouts using the SpringLayout class.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class GUIHelper {
/**
diff --git a/sources/client/inputforms/AdvancedSearching.java b/sources/client/inputforms/AdvancedSearching.java
index 54699d6..0837a71 100644
--- a/sources/client/inputforms/AdvancedSearching.java
+++ b/sources/client/inputforms/AdvancedSearching.java
@@ -25,7 +25,7 @@ import shared.remotecall.*;
* Its used for using the andvanced searching options of the client such as using
* Java regular expressions on specific elements of the calendar database instead and
* date ranges.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class AdvancedSearching extends InputForm {
diff --git a/sources/client/inputforms/CreateNewEvent.java b/sources/client/inputforms/CreateNewEvent.java
index 5defb0f..8d16738 100644
--- a/sources/client/inputforms/CreateNewEvent.java
+++ b/sources/client/inputforms/CreateNewEvent.java
@@ -21,7 +21,7 @@ import shared.remotecall.*;
/**
* This class contains all the GUI components of the create new event dialog.
* Its used for adding new calendar events to the database.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class CreateNewEvent extends InputForm {
diff --git a/sources/client/inputforms/EditExistingEvent.java b/sources/client/inputforms/EditExistingEvent.java
index 35e584d..b0e9631 100644
--- a/sources/client/inputforms/EditExistingEvent.java
+++ b/sources/client/inputforms/EditExistingEvent.java
@@ -21,7 +21,7 @@ import shared.remotecall.*;
/**
* This class contains all the GUI components of the edit event dialog.
* Its used for editing existing events of the calendar database.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class EditExistingEvent extends InputForm {
diff --git a/sources/client/inputforms/InputForm.java b/sources/client/inputforms/InputForm.java
index 0c507f8..8b665c5 100644
--- a/sources/client/inputforms/InputForm.java
+++ b/sources/client/inputforms/InputForm.java
@@ -14,7 +14,7 @@ import client.*;
/**
* This abstract class is the base class of all other classes of the same package.
* It contains some common members using by all other (specialized) input form classes.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public abstract class InputForm extends SubWindow {
diff --git a/sources/client/inputforms/Preferences.java b/sources/client/inputforms/Preferences.java
index 02ebfd6..b7f783c 100644
--- a/sources/client/inputforms/Preferences.java
+++ b/sources/client/inputforms/Preferences.java
@@ -17,7 +17,7 @@ import shared.*;
/**
* This class contains all the GUI components of the preferences/options/config dialog.
* Its used for editing the current config values of the netcalendar.conf file.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class Preferences extends InputForm {
diff --git a/sources/client/inputforms/RenameCategory.java b/sources/client/inputforms/RenameCategory.java
index b662754..e55c547 100644
--- a/sources/client/inputforms/RenameCategory.java
+++ b/sources/client/inputforms/RenameCategory.java
@@ -21,7 +21,7 @@ import shared.remotecall.*;
/**
* This class contains all the GUI components of the edit event dialog.
* Its used for editing existing events of the calendar database.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public class RenameCategory extends InputForm {
diff --git a/sources/server/CalendarDatabase.java b/sources/server/CalendarDatabase.java
index 0e37d0d..f277a06 100644
--- a/sources/server/CalendarDatabase.java
+++ b/sources/server/CalendarDatabase.java
@@ -12,7 +12,7 @@ import shared.remotecall.*;
/**
* A object of this class encapsulates the whole calendar database on the server side.
* This class is used for getting/modifying and adding/removing of calendar events.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class CalendarDatabase {
diff --git a/sources/server/CalendarFormatParser.java b/sources/server/CalendarFormatParser.java
index 852fd73..a1f3cb0 100644
--- a/sources/server/CalendarFormatParser.java
+++ b/sources/server/CalendarFormatParser.java
@@ -20,7 +20,7 @@ import shared.*;
* memory. Then, the CalendarDatabase class can be used to access the database.
* Each calendar category has its own file. In each file all the calendar events of the
* specific categories are stored.
- * @author buetow
+ * @author Paul C. Buetow
*
*/
public final class CalendarFormatParser {
diff --git a/sources/server/NetCalendarServer.java b/sources/server/NetCalendarServer.java
index 6fe6f74..a8e4e99 100644
--- a/sources/server/NetCalendarServer.java
+++ b/sources/server/NetCalendarServer.java
@@ -19,7 +19,7 @@ import shared.remotecall.*;
/**
* This is the main class of the server part of the netcalendar suite.
* It contains the server socket part and hold a references to the calendar database.
- * @author buetow
+ * @author Paul C. Buetow
*/
public class NetCalendarServer extends Thread {
private int iPort;
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 {