01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets;
06:
07: import java.awt.*;
08: import java.util.*;
09: import java.io.*;
10:
11: import javax.servlet.*;
12:
13: /**
14: * SDialog defines a component that can render a dialog window.
15: * <P>
16: * This class has the same structure as a SFrame but the display
17: * semantics are slightly different.
18: *
19: * @author Robin Sharp
20: */
21:
22: public class SDialog extends SFrame {
23: /**
24: * Construct a fully qualified SDialog. This binds the Frame to the
25: * SwingletManager.
26: */
27: public SDialog(SFrame frame) {
28: super (frame);
29: }
30:
31: /**
32: * Construct a fully qualified SDialog.
33: */
34: public SDialog() {
35: }
36:
37: /**
38: * Returns the name of the L&F class that renders this component.
39: */
40: public Class getUIClass() {
41: return SDialog.class;
42: }
43:
44: }
|