01: package org.wings.plaf.css; 02: 03: import org.wings.plaf.ComponentCG; 04: 05: /** 06: * @author hengels 07: */ 08: public interface CGDecorator extends ComponentCG { 09: ComponentCG getDelegate(); 10: 11: void setDelegate(ComponentCG delegate); 12: }