01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets;
06:
07: /**
08: * A SPanel is a basic panel.
09: *
10: * @author Robin Sharp
11: */
12:
13: import java.awt.*;
14: import java.io.*;
15: import java.util.*;
16:
17: public class SPanel extends SContainer {
18: public SPanel() {
19: }
20:
21: /**
22: * Returns the name of the L&F class that renders this component.
23: */
24: public Class getUIClass() {
25: return SPanel.class;
26: }
27:
28: }
|