Package org.eclipse.birt.report.engine.content

Examples of org.eclipse.birt.report.engine.content.IContent


            cell.setCellValue(csNumberValue);
        }
    }

    protected boolean handleHyperLink(IArea area, HSSFCell cell) {
        IContent content = area.getContent();

        if (content != null) {
            IHyperlinkAction hlAction = content.getHyperlinkAction();

            if (hlAction != null) {
                try {
                    IReportRunnable runnable = services.getReportRunnable();
                    String systemId = runnable == null ? null
View Full Code Here


        return false;
    }

    protected boolean handleComments(IArea area, HSSFCell cell,
            HSSFPatriarch patriarch) {
        IContent content = area.getContent();

        if (content != null) {
            Object sourceObj = content.getGenerateBy();

            if (sourceObj instanceof ReportElementDesign) {
                sourceObj = ((ReportElementDesign) sourceObj).getHandle();

                if (sourceObj instanceof ReportElementHandle) {
View Full Code Here

        return unWrapWithType(value);
    }

    @Override
    protected void buildFrame(IArea area, boolean isContainer) {
        IContent cnt = area.getContent();

        if (area instanceof PageArea) {
            // record body area to support export_body_only option
            bodyArea = ((PageArea) area).getBody();
        }
View Full Code Here

TOP

Related Classes of org.eclipse.birt.report.engine.content.IContent

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.