Modifying Birt Engine

newbie321
edited February 11, 2022 in Analytics #1
<p>Hi, </p>
<p> </p>
<p>I am trying to get rid of 'read a row ' and 'read a cell' output that birt produces when generating the report.</p>
<pre class="_prettyXprint">
read a cell...
read a row...
read a cell...
read a row.</pre>
<p>I understand the lines that that are responsible for such output are </p>
<pre class="_prettyXprint">
protected void startContainer( IContainerArea container )
{
...

if ( container instanceof RowArea )
{
System.out.println("read a row...");
rowStyleStack.push( container.getBoxStyle( ) );
}
else if ( container instanceof CellArea )
{
System.out.println("read a cell...");
drawCell( (CellArea) container );
}
...</pre>
<p>I downloaded the birt source code but what do I do next to modify the actual birt engine?   I tried looking for *.java files and there are only .jar files in the source code package and I am not too sure how to properly proceed.  </p>
<p> </p>
<p>Could someone outline how to import birt source code procect into the eclipse for the development/modification purposes?</p>
<p> </p>
<p>Thanks!</p>
<p> </p>

Comments