Skip to content
Snippets Groups Projects
Commit bf52330e authored by Robert Butora's avatar Robert Butora
Browse files

cosmetic edit

parent 53209c9b
No related branches found
No related tags found
No related merge requests found
......@@ -26,15 +26,19 @@ public final class XmlSerializer
{
StarTable dstable = makeSearchResultsTable( searchOutputData.subsurveyArr );
dstable.setParameter(new DescribedValue(new DefaultValueInfo( "subsurveyCount", Integer.class, "Count of subsurveys with found datacube(s)" ), searchOutputData.subsurveyArr.length ) );
dstable.setParameter(new DescribedValue(new DefaultValueInfo( "datacubeCount", Integer.class, "Count of all datacubes from VLKB-search" ), searchOutputData.datacubeCount ) );
dstable.setParameter(new DescribedValue(
new DefaultValueInfo( "subsurveyCount", Integer.class, "Count of subsurveys with found datacube(s)" ),
searchOutputData.subsurveyArr.length ) );
dstable.setParameter(new DescribedValue(
new DefaultValueInfo( "datacubeCount", Integer.class, "Count of all datacubes from VLKB-search" ),
searchOutputData.datacubeCount ) );
StarTable[] tables = {dstable};
BufferedWriter out = new BufferedWriter( writer );
out.write("<?xml-stylesheet type='text/xsl' href='VOTable2XHTML.xsl'?>");
//out.write("<?xml-stylesheet type='text/xsl' href='http://www.ivoa.net/internal/IVOA/VOTableSoftware/VOTable2XHTML.xsl'?>");
out.write( "<VOTABLE version='1.1'>\n" );
out.write( "<RESOURCE>\n" );
out.write( "<DESCRIPTION> " + searchOutputData.versionString + " </DESCRIPTION>\n" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment