summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2009-02-18 22:36:15 +0000
committerPaul Buetow <paul@buetow.org>2009-02-18 22:36:15 +0000
commita1267fb1830ecbca0c5e3939ab2f0cea8386c562 (patch)
treed19c9795996a24a11bd0071fdad5d132ca1dec42 /sources
parent832b02ef0fbf477dbd73dcedfbfb5c9093b82c8c (diff)
renamed config.txt into netcalendar.conf
Diffstat (limited to 'sources')
-rw-r--r--sources/client/inputforms/Preferences.java4
-rw-r--r--sources/shared/Config.java8
-rw-r--r--sources/shared/Main.java2
3 files changed, 7 insertions, 7 deletions
diff --git a/sources/client/inputforms/Preferences.java b/sources/client/inputforms/Preferences.java
index cefc192..a08fa65 100644
--- a/sources/client/inputforms/Preferences.java
+++ b/sources/client/inputforms/Preferences.java
@@ -12,7 +12,7 @@ import client.helper.GUIHelper;
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 config.txt file.
+ * Its used for editing the current config values of the netcalendar.conf file.
* @author buetow
*
*/
@@ -88,7 +88,7 @@ public class Preferences extends InputForm {
/**
* This method is invoked if the enter key is pressed or if the submit button
* has been pressed. It starts a client request relating to the user's input of
- * the text fields. It will write all changes to the config.txt file.
+ * the text fields. It will write all changes to the netcalendar.conf file.
*/
protected void submit() {
for (int i = 0; i < iNumPairs; ++i)
diff --git a/sources/shared/Config.java b/sources/shared/Config.java
index 92484b2..40e561c 100644
--- a/sources/shared/Config.java
+++ b/sources/shared/Config.java
@@ -6,13 +6,13 @@ 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 config.txt file.
+ * of this program. Its reading and writing back the values from and to the netcalendar.conf file.
* @author buetow
*
*/
public final class Config {
public static final String VERSION = "NetCalendar 1.1 SVN";
- private static final String CONFIG_FILE = "config.txt";
+ private static final String CONFIG_FILE = "netcalendar.conf";
private static HashMap mapConfigVals;
/**
@@ -66,7 +66,7 @@ public final class Config {
}
/**
- * This methods reads the options from the calendar config file 'config.txt'.
+ * This methods reads the options from the calendar config file 'netcalendar.conf'.
* @param sConfigFile Specifies the relative or absolute path to the config file.
*/
public static void readConfig(String sConfigFile) {
@@ -211,7 +211,7 @@ public final class Config {
}
/**
- * This method writes the current configuration to the config file "config.txt".
+ * This method writes the current configuration to the config file "netcalendar.conf".
*/
public static void writeConfigToFile() {
String [] sKeys = getSortedKeyArray();
diff --git a/sources/shared/Main.java b/sources/shared/Main.java
index 37ebc03..a22bf24 100644
--- a/sources/shared/Main.java
+++ b/sources/shared/Main.java
@@ -75,7 +75,7 @@ public final class Main {
}
/**
- * This method writes a specific message string into a logfile which is specified in the config.txt.
+ * This method writes a specific message string into a logfile which is specified in the netcalendar.conf.
* @param sMessage Specified the message string to write into the logfile.
*/
private static void logMessage(String sMessage) {