01: // (c) copyright 2006 by eXXcellent solutions, Ulm. Author: bschmid
02:
03: package org.wings.plaf.css;
04:
05: import org.wings.io.Device;
06: import org.wings.SComponent;
07: import org.wings.border.*;
08: import org.wings.style.*;
09:
10: import java.io.IOException;
11:
12: /** This is not a 'real' CG class but a class collection rendering code for variois borders. */
13: public class BorderCG {
14:
15: public void writeComponentBorderPrefix(final Device device,
16: final SComponent component) throws IOException {
17: }
18:
19: public void writeComponentBorderSufix(final Device device,
20: final SComponent component) throws IOException {
21: }
22: }
|