01: /*
02: * Copyright 2000,2005 wingS development team.
03: *
04: * This file is part of wingS (http://wingsframework.org).
05: *
06: * wingS is free software; you can redistribute it and/or modify
07: * it under the terms of the GNU Lesser General Public License
08: * as published by the Free Software Foundation; either version 2.1
09: * of the License, or (at your option) any later version.
10: *
11: * Please see COPYING for the complete licence.
12: */
13: package org.wings.plaf.css.msie;
14:
15: import org.apache.commons.logging.Log;
16: import org.apache.commons.logging.LogFactory;
17: import org.wings.io.Device;
18:
19: import java.io.IOException;
20:
21: /**
22: * This is the MSIE XHTML CSS plaf for the SMenuBar Component.
23: * @author ole
24: */
25: public final class MenuBarCG extends org.wings.plaf.css.MenuBarCG {
26:
27: private static final long serialVersionUID = 1L;
28: private final transient static Log log = LogFactory
29: .getLog(MenuBarCG.class);
30:
31: /* (non-Javadoc)
32: * @see org.wings.plaf.css.MenuBarCG#printSpacer(org.wings.io.Device)
33: */
34: protected void printSpacer(final Device device) throws IOException {
35: // do nothing, ie does not need spacers
36: }
37: }
|