Java 类net.sf.jasperreports.engine.fill.JRFillCloneFactory 实例源码

项目:jasperreports    文件:TextInputComponentFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    TextInputComponentFill textInputComponentFill = (TextInputComponentFill) component;
    return new TextInputComponentFill(textInputComponentFill.getTextInputComponent(), factory);
}
项目:jasperreports    文件:HtmlComponentFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    HtmlComponentFill htmlComponentFill = (HtmlComponentFill) component;
    return new HtmlComponentFill(htmlComponentFill.getHtmlComponent());
}
项目:jasperreports    文件:FillSubreportPartFactory.java   
@Override
public PartFillComponent cloneFillComponent(PartFillComponent component,
        JRFillCloneFactory factory)
{
    //TODO implement
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillMultiAxisDataset.java   
public FillMultiAxisDataset(FillMultiAxisDataset dataset, JRFillCloneFactory factory)
{
    super(dataset, factory);

    this.jasperReportsContext = dataset.jasperReportsContext;
    this.data = dataset.data;
    this.expressionEvaluator = dataset.expressionEvaluator;
}
项目:jasperreports    文件:BarcodeFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    BarcodeFillComponent barcode = (BarcodeFillComponent) component;
    return new BarcodeFillComponent(barcode);
}
项目:jasperreports    文件:MapFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    MapFillComponent fillMap = (MapFillComponent) component;
    return new MapFillComponent(fillMap.getMap());
}
项目:jasperreports    文件:HorizontalFillList.java   
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);
}
项目:jasperreports    文件:FillListContents.java   
public FillListContents(FillListContents fillListContents,
        JRFillCloneFactory factory)
{
    super(fillListContents, factory);

    this.contentsHeight = fillListContents.contentsHeight;

    initElements();
    initConditionalStyles();
}
项目:jasperreports    文件:BaseFillList.java   
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
}
项目:jasperreports    文件:BarbecueFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    BarbecueFillComponent fillBarcode = (BarbecueFillComponent) component;
    return new BarbecueFillComponent(fillBarcode.getBarcode());
}
项目:jasperreports    文件:SortComponentFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    SortComponentFill sortComponentFill = (SortComponentFill) component;
    return new SortComponentFill(sortComponentFill.getSortComponent());
}
项目:jasperreports    文件:IconLabelComponentFill.java   
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());
}
项目:jasperreports    文件:IconLabelComponentFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    IconLabelComponentFill iconLabelComponentFill = (IconLabelComponentFill) component;
    return new IconLabelComponentFill(iconLabelComponentFill.getIconLabelComponent(), factory);
}
项目:jasperreports    文件:FillTable.java   
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;
}
项目:jasperreports    文件:FillTableSubreport.java   
public FillTableSubreport(FillTableSubreport tableSubreport, JRFillCloneFactory factory)
{
    super(tableSubreport, factory);

    this.fillContainerContext = tableSubreport.fillContainerContext;
    this.tableReport = tableSubreport.tableReport;
    this.builtinEvaluatorFactory = tableSubreport.builtinEvaluatorFactory;
}
项目:jasperreports    文件:TextInputComponentFill.java   
public TextInputComponentFill(TextInputComponent textInputComponent, JRFillCloneFactory factory)
{
    this.textInputComponent = textInputComponent;
    this.textField = null;//FIXMEINPUT (JRFillTextField)factory.getVisitResult(textInputComponent.getTextField());
}
项目:jasperreports    文件:TextInputComponentFill.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillXYChart.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:XYChartFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillPieChart.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:BarChartFillFactory.java   
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:PieChartFillFactory.java   
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillBarChart.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:HtmlComponentFill.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillMultiAxisData.java   
public FillMultiAxisData(FillMultiAxisData data, JRFillCloneFactory factory)
{
    this.fillDataset = new FillMultiAxisDataset(data.fillDataset, factory);
}
项目:jasperreports    文件:BaseFillComponent.java   
protected BaseFillComponent(BaseFillComponent fillComponent, JRFillCloneFactory factory)
{
    //NOP
}
项目:jasperreports    文件:SpiderChartFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillSpiderChart.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:HorizontalFillList.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    return new HorizontalFillList(this, factory);
}
项目:jasperreports    文件:FillDatasetRun.java   
public FillDatasetRun(FillDatasetRun datasetRun, JRFillCloneFactory factory)
{
    super(datasetRun, factory);
}
项目:jasperreports    文件:FillListContents.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    return new FillListContents(this, factory);
}
项目:jasperreports    文件:FillListContents.java   
public FillListContents createClone()
{
    JRFillCloneFactory factory = new JRFillCloneFactory();
    return new FillListContents(this, factory);
}
项目:jasperreports    文件:FillListFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    return (FillComponent) ((BaseFillList) component).createClone(factory);
}
项目:jasperreports    文件:VerticalFillList.java   
protected VerticalFillList(VerticalFillList list, JRFillCloneFactory factory)
{
    super(list, factory);

    this.listContents = new FillListContents(list.listContents, factory);
}
项目:jasperreports    文件:VerticalFillList.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    return new VerticalFillList(this, factory);
}
项目:jasperreports    文件:SortComponentFill.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:IconLabelComponentFill.java   
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    throw new UnsupportedOperationException();
}
项目:jasperreports    文件:FillTableFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component,
        JRFillCloneFactory factory)
{
    return new FillTable((FillTable) component, factory);
}
项目:jasperreports    文件:FillTableSubreport.java   
@Override
public JRFillCloneable createClone(JRFillCloneFactory factory)
{
    // not actually used, but implemented for safety
    return new FillTableSubreport(this, factory);
}
项目:dynamicreports-jasper    文件:GeoMapFillFactory.java   
@Override
public FillComponent cloneFillComponent(FillComponent component, JRFillCloneFactory factory) {
    throw new UnsupportedOperationException();
}