Source code: org/mitre/cvw/CVWPreferencePanel.java
1 /*
2 * Copyright (c) 1996-2000. The MITRE Corporation (http://www.mitre.org/).
3 * All rights reserved.
4 * CVW comes with ABSOLUTELY NO WARRANTY. See license for details.
5 */
6
7 package org.mitre.cvw;
8
9 import java.awt.*;
10
11 /**
12 * This is the base class for all panels displayed in the
13 * preferences dialog
14 * @version 1.0
15 * @author Deb Ercolini
16 * @see CVWPrefsFrame
17 */
18 public class CVWPreferencePanel extends CVWPanel {
19
20 CVWPreferences cvwPref;
21
22 public static int ADVANCED = 1;
23 public static int GENERAL = 0;
24
25 /**
26 * Constructor
27 */
28 CVWPreferencePanel(){
29
30 }
31
32 }