1 13 package com.tonbeller.jpivot.table; 14 15 import org.w3c.dom.Element ; 16 17 import com.tonbeller.jpivot.table.SpanBuilder.SBContext; 18 import com.tonbeller.jpivot.table.span.Span; 19 20 25 public abstract class SpanBuilderDecorator extends PartBuilderDecorator implements SpanBuilder { 26 29 public SpanBuilderDecorator(SpanBuilder delegate) { 30 super(delegate); 31 } 32 33 public Element build(SBContext sbctx, Span span, boolean even) { 34 return ((SpanBuilder)delegate).build(sbctx, span, even); 35 } 36 37 } 38 | Popular Tags |