summaryrefslogtreecommitdiff
path: root/sources/client
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 /sources/client
parentc83d9c9c92af88cb5a11fa3ade4138cfe526a3c9 (diff)
author buetow => author Paul C. Buetow
Diffstat (limited to 'sources/client')
-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
15 files changed, 16 insertions, 16 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 {