[kepler-dev] [Bug 5094] reports do not display matrix or xml token data

bugzilla-daemon at ecoinformatics.org bugzilla-daemon at ecoinformatics.org
Wed Jul 14 18:14:31 PDT 2010


http://bugzilla.ecoinformatics.org/show_bug.cgi?id=5094

Derik Barseghian <barseghian at nceas.ucsb.edu> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|reports do not display      |reports do not display
                   |matrix data                 |matrix or xml token data

--- Comment #3 from Derik Barseghian <barseghian at nceas.ucsb.edu> 2010-07-14 18:14:31 PDT ---
A simple fix is to add:

        if (token instanceof MatrixToken) {
            value = String.valueOf( ((MatrixToken)token).toString());
        }
        if (token instanceof XMLToken) {
            value = String.valueOf( ((XMLToken)token).toString());
        }

to TokenUtil's getStringValue(Token token). 
But maybe this isn't a nice enough formatting for the reporting 2.0 release?

-- 
Configure bugmail: http://bugzilla.ecoinformatics.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.


More information about the Kepler-dev mailing list