ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/projects/cms/source/conient/uk/org/iscream/cms/conient/ConfigurationDialog.java
Revision: 1.1
Committed: Fri Feb 16 16:26:21 2001 UTC (23 years, 3 months ago) by ajm
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 //---PACKAGE DECLARATION---
2 package uk.ac.ukc.iscream.conient;
3
4 //---IMPORTS---
5 import javax.swing.JDialog;
6 import java.util.Properties;
7
8 /**
9 * This provides a modal dialog from which the user
10 * can reconfigure the conient client.
11 *
12 * It then writes back the configuration to the file.
13 *
14 * Server configured options are displayed, but are
15 * for information purposes only, and cannot be changed.
16 *
17 * @author $Author: ajm4 $
18 * @version $Id: Configuration.java,v 1.3 2001/02/04 23:45:10 ajm4 Exp $
19 */
20 public class ConfigurationDialog extends JDialog {
21
22 //---FINAL ATTRIBUTES---
23
24 /**
25 * The current CVS revision of this class
26 */
27 public static final String REVISION = "$Revision: 1.3 $";
28
29 //---STATIC METHODS---
30
31 //---CONSTRUCTORS---
32
33 /**
34 * Constructs and shows the dialog for the user
35 */
36 public ConientConfiguration() {
37 super(null, "Configuration Options", true);
38 }
39
40 //---PUBLIC METHODS---
41
42 //---PRIVATE METHODS---
43
44 //---ACCESSOR/MUTATOR METHODS---
45
46 //---ATTRIBUTES---
47
48 //---STATIC ATTRIBUTES---
49
50 }