01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets.plaf.javascript;
06:
07: import java.awt.*;
08: import java.util.*;
09: import java.io.*;
10:
11: import com.javelin.swinglets.*;
12: import com.javelin.swinglets.plaf.*;
13: import com.javelin.swinglets.plaf.html.*;
14:
15: /**
16: * JSServletUI defines a look and feel for default Java Script.
17: * <p>
18: * This class requires the ServletManager.getURL() to define the names of the other
19: * frames in the split pane. The name must be set on the components that are set
20: * this name is then appended to the URL in the frameset.
21: *
22: * @author Robin Sharp
23: */
24:
25: public class JSServletUI extends HTMLServletUI {
26: }
|