1 13 package com.tonbeller.jpivot.table; 14 15 import org.w3c.dom.Element ; 16 17 import com.tonbeller.jpivot.olap.model.Cell; 18 19 24 public class CellBuilderDecorator extends PartBuilderDecorator implements CellBuilder { 25 26 public CellBuilderDecorator(CellBuilder delegate) { 27 super(delegate); 28 } 29 30 public Element build(Cell cell, boolean even) { 31 return ((CellBuilder)delegate).build(cell, even); 32 } 33 34 } 35 | Popular Tags |