KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > wings > plaf > PrefixAndSuffixDelegate


1 /*
2  * $Id: PrefixAndSuffixDelegate.java,v 1.2 2005/03/11 18:22:57 blueshift Exp $
3  * Copyright 2000,2005 wingS development team.
4  *
5  * This file is part of wingS (http://www.j-wings.org).
6  *
7  * wingS is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU Lesser General Public License
9  * as published by the Free Software Foundation; either version 2.1
10  * of the License, or (at your option) any later version.
11  *
12  * Please see COPYING for the complete licence.
13  */
package org.wings.plaf;
14
15 import org.wings.SComponent;
16 import org.wings.io.Device;
17
18 import java.io.IOException JavaDoc;
19 import java.io.Serializable JavaDoc;
20
21 /**
22  * wingS renders a HTML code in front an behind every component (for alginment, colouring, font style, etc.).
23  * Implemntors of this interface do this for special browsers.
24  *
25  * @author ole
26  */

27 public interface PrefixAndSuffixDelegate extends Serializable JavaDoc {
28     public void writePrefix(Device device, SComponent component) throws IOException JavaDoc;
29     public void writeSuffix(Device device, SComponent component) throws IOException JavaDoc;
30 }
Popular Tags