1 13 package com.tonbeller.jpivot.table; 14 15 import org.w3c.dom.Element ; 16 17 import com.tonbeller.jpivot.table.span.Span; 18 19 24 public interface SpanBuilder extends PartBuilder { 25 interface SBContext { 26 void setCaption(Element elem, String label); 27 void addClickable(String href, String label); 28 } 29 Element build(SBContext sbctx, Span span, boolean even); 30 } 31 | Popular Tags |