This commit is contained in:
Lucio Lelii 2008-12-04 02:03:46 +00:00
parent 6bee5458d8
commit 1d8f5da9c6
2 changed files with 2 additions and 2 deletions

View File

@ -302,7 +302,7 @@ public class ModelerService {
} }
System.out.println(XMLUtil.PrepareMCFormatXML(totalMF, resNative, resDerivable, selectedMetadataStructure)); System.out.println(XMLUtil.PrepareMCFormatXML(resNative, resDerivable, totalMF, selectedMetadataStructure));
return XMLUtil.PrepareMCFormatXML( resNative,resDerivable,totalMF , selectedMetadataStructure); return XMLUtil.PrepareMCFormatXML( resNative,resDerivable,totalMF , selectedMetadataStructure);
} }

View File

@ -63,7 +63,7 @@ public class MetadataFormat implements Listable{
} }
public List<String> getAsStringList(){ public List<String> getAsStringList(){
return Arrays.asList(new String[]{this.id, this.name, this.schemaURI.toString(), this.language}); return Arrays.asList(new String[]{this.id, this.name, this.schemaURI.getRawPath(), this.language});
} }