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 javax.swing.*;
12:
13: import com.javelin.swinglets.*;
14: import com.javelin.swinglets.plaf.*;
15: import com.javelin.swinglets.plaf.html.*;
16:
17: /**
18: * JSListUI defines a look and feel for default Java Script.
19: *
20: * @author Robin Sharp
21: */
22:
23: public class JSListUI extends HTMLListUI implements JSComponentUI {
24: /**
25: * Render the script code for a text the PrintWriter.
26: */
27: public void updateScript(PrintWriter out, SComponent c) {
28: JSUtility.updateScript(out, c);
29: }
30:
31: /**
32: * Render the UI on the PrintWriter
33: */
34: public void updateEvent(PrintWriter out, SComponent c) {
35: JSUtility.updateEvents(out, c, swingletListeners);
36: }
37:
38: }
|