01: /*
02: * Copyright Javelin Software, All rights reserved.
03: */
04:
05: package com.javelin.swinglets.plaf.wml;
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:
14: /**
15: * WMLBorderUI defines a look and feel for default WML.
16: *
17: * @author Robin Sharp
18: */
19:
20: public class WMLBorderUI extends SBorderUI {
21: /**
22: * Paint the border header in the specified manner.
23: */
24: public void updateBorderHeader(Object out, SComponent component) {
25: }
26:
27: /**
28: * Paint the border in the specified manner.
29: */
30: public void updateBorder(Object out, SComponent component) {
31: updateBorder((PrintWriter) out, component);
32: }
33:
34: /**
35: * Paint the border in the specified manner.
36: */
37: public void updateBorder(PrintWriter out, SComponent component) {
38: component.getUI().update(out, component);
39: }
40:
41: /**
42: * Paint the border footer in the specified manner.
43: */
44: public void updateBorderFooter(Object out, SComponent component) {
45: }
46:
47: }
|