Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[birt-dev]CheckIn: Fix Bugzilla Bug --- 151792 [Regression]Parameter dialog shouldn't pop up while printing a report as PDF

Title: [birt-dev]CheckIn: Fix Bugzilla Bug --- 151792 [Regression]Parameter dialog shouldn't pop up while printing a report as PDF

- Summary:

- Bugzilla Bug (s) Resolved:
151792 [Regression]Parameter dialog shouldn't pop up while printing a report as PDF


- Description:
        To support paramter display text, the report engine saves both the paramter value and paramter display text into the report document. The value pair is saved as Serialable object and restore through standard java serialze metchinism. The problem is the IOUtil used to save those object exits in org.eclipse.birt.core while the ParamterAttribute object exits in org.eclipse.birt.report.engine. As the core plugin doesn't depends on the engine plugin, the engine failed to read the value out.

        Save the paramter value pair as Object[] which is the standard java object, so the IOUtil can save/restoe the paramter correctly.

- Tests Description  :

        Manual

- Notes to Build Team:

- Notes to Developers:

- Notes to QA:  

 
- Notes to Documentation:  

- Files Edited:
cvs ci -m "change the format of saved parameter" -l "/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentWriter.java" "/org.eclipse.birt.report.engine/src/org/eclipse/birt/report/engine/api/impl/ReportDocumentReader.java"


- Files Added:

- Files Deleted


-Wei Yan



Back to the top