@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { TextInputComponentFill textInputComponentFill = (TextInputComponentFill) component; return new TextInputComponentFill(textInputComponentFill.getTextInputComponent(), factory); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { HtmlComponentFill htmlComponentFill = (HtmlComponentFill) component; return new HtmlComponentFill(htmlComponentFill.getHtmlComponent()); }
@Override public PartFillComponent cloneFillComponent(PartFillComponent component, JRFillCloneFactory factory) { //TODO implement throw new UnsupportedOperationException(); }
public FillMultiAxisDataset(FillMultiAxisDataset dataset, JRFillCloneFactory factory) { super(dataset, factory); this.jasperReportsContext = dataset.jasperReportsContext; this.data = dataset.data; this.expressionEvaluator = dataset.expressionEvaluator; }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { BarcodeFillComponent barcode = (BarcodeFillComponent) component; return new BarcodeFillComponent(barcode); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { MapFillComponent fillMap = (MapFillComponent) component; return new MapFillComponent(fillMap.getMap()); }
protected HorizontalFillList(HorizontalFillList list, JRFillCloneFactory factory) { super(list, factory); this.contentsWidth = list.contentsWidth; this.ignoreWidth = list.ignoreWidth; FillListContents listContents = list.contentsList.get(0); FillListContents contentsClone = new FillListContents(listContents, factory); this.contentsList = new ArrayList<FillListContents>(); this.contentsList.add(contentsClone); }
public FillListContents(FillListContents fillListContents, JRFillCloneFactory factory) { super(fillListContents, factory); this.contentsHeight = fillListContents.contentsHeight; initElements(); initConditionalStyles(); }
protected BaseFillList(BaseFillList list, JRFillCloneFactory factory) { super(list, factory); this.contentsHeight = list.contentsHeight; this.datasetRun = new FillDatasetRun(list.datasetRun, factory); this.printFrameTemplates = list.printFrameTemplates;//share the templates among clones }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { BarbecueFillComponent fillBarcode = (BarbecueFillComponent) component; return new BarbecueFillComponent(fillBarcode.getBarcode()); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { SortComponentFill sortComponentFill = (SortComponentFill) component; return new SortComponentFill(sortComponentFill.getSortComponent()); }
public IconLabelComponentFill(IconLabelComponent iconLabelComponent, JRFillCloneFactory factory) { this.iconLabelComponent = iconLabelComponent; this.lineBox = iconLabelComponent.getLineBox().clone(this); this.labelTextField = null;//FIXMEINPUT (JRFillTextField)factory.getVisitResult(iconLabelComponent.getTextField()); this.iconTextField = null;//FIXMEINPUT (JRFillTextField)factory.getVisitResult(iconLabelComponent.getTextField()); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { IconLabelComponentFill iconLabelComponentFill = (IconLabelComponentFill) component; return new IconLabelComponentFill(iconLabelComponentFill.getIconLabelComponent(), factory); }
public FillTable(FillTable table, JRFillCloneFactory factory) { super(table, factory); this.table = table.table; this.factory = table.factory; this.fillSubreportFactories = table.fillSubreportFactories; this.printFrameTemplates = table.printFrameTemplates; }
public FillTableSubreport(FillTableSubreport tableSubreport, JRFillCloneFactory factory) { super(tableSubreport, factory); this.fillContainerContext = tableSubreport.fillContainerContext; this.tableReport = tableSubreport.tableReport; this.builtinEvaluatorFactory = tableSubreport.builtinEvaluatorFactory; }
public TextInputComponentFill(TextInputComponent textInputComponent, JRFillCloneFactory factory) { this.textInputComponent = textInputComponent; this.textField = null;//FIXMEINPUT (JRFillTextField)factory.getVisitResult(textInputComponent.getTextField()); }
public JRFillCloneable createClone(JRFillCloneFactory factory) { throw new UnsupportedOperationException(); }
@Override public JRFillCloneable createClone(JRFillCloneFactory factory) { throw new UnsupportedOperationException(); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { throw new UnsupportedOperationException(); }
public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { throw new UnsupportedOperationException(); }
public FillMultiAxisData(FillMultiAxisData data, JRFillCloneFactory factory) { this.fillDataset = new FillMultiAxisDataset(data.fillDataset, factory); }
protected BaseFillComponent(BaseFillComponent fillComponent, JRFillCloneFactory factory) { //NOP }
@Override public JRFillCloneable createClone(JRFillCloneFactory factory) { return new HorizontalFillList(this, factory); }
public FillDatasetRun(FillDatasetRun datasetRun, JRFillCloneFactory factory) { super(datasetRun, factory); }
@Override public JRFillCloneable createClone(JRFillCloneFactory factory) { return new FillListContents(this, factory); }
public FillListContents createClone() { JRFillCloneFactory factory = new JRFillCloneFactory(); return new FillListContents(this, factory); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { return (FillComponent) ((BaseFillList) component).createClone(factory); }
protected VerticalFillList(VerticalFillList list, JRFillCloneFactory factory) { super(list, factory); this.listContents = new FillListContents(list.listContents, factory); }
@Override public JRFillCloneable createClone(JRFillCloneFactory factory) { return new VerticalFillList(this, factory); }
@Override public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) { return new FillTable((FillTable) component, factory); }
@Override public JRFillCloneable createClone(JRFillCloneFactory factory) { // not actually used, but implemented for safety return new FillTableSubreport(this, factory); }