blob: fe5a336200558b5c07d944aa88025699c1482f4c [file] [log] [blame]
package org.apache.taverna.workbench.views.results.saveactions;
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import static org.apache.taverna.workbench.icons.WorkbenchIcons.xmlNodeIcon;
import java.io.File;
import java.io.IOException;
import java.nio.file.Path;
import java.util.Map;
import javax.swing.AbstractAction;
import org.apache.taverna.results.BaclavaDocumentPathHandler;
/**
* Stores the entire map of result objects to disk as a single XML data
* document. For the most part, this class delegates to
* {@link BaclavaDocumentPathHandler}
*
* @author Tom Oinn
* @author Alex Nenadic
* @author Stuart Owen
* @author David Withers
*/
public class SaveAllResultsAsXML extends SaveAllResultsSPI {
private static final long serialVersionUID = 452360182978773176L;
private BaclavaDocumentPathHandler baclavaDocumentHandler = new BaclavaDocumentPathHandler();
public SaveAllResultsAsXML() {
super();
putValue(NAME, "Save in single XML document");
putValue(SMALL_ICON, xmlNodeIcon);
}
@Override
public AbstractAction getAction() {
return new SaveAllResultsAsXML();
}
/**
* Saves the result data to an XML Baclava file.
*
* @throws IOException
*/
@Override
protected void saveData(File file) throws IOException {
baclavaDocumentHandler.saveData(file);
}
@Override
public void setChosenReferences(Map<String, Path> chosenReferences) {
super.setChosenReferences(chosenReferences);
baclavaDocumentHandler.setChosenReferences(chosenReferences);
}
@Override
protected String getFilter() {
return "xml";
}
}