blob: e7407ca67becca1716ce427048cb8b0f2ac88c50 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2019 CEA LIST.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Yupanqui Munoz (CEA LIST) yupanqui.munozjulho@cea.fr - Initial API and implementation
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*****************************************************************************/
package org.eclipse.papyrus.model2doc.odt.internal.util;
import org.eclipse.papyrus.model2doc.odt.internal.editor.ODTEditor;
/**
* Utility class of ODT Editor.
*
*/
public class ODTEditorUtil {
/**
* Constructor.
*
*/
private ODTEditorUtil() {
// to avoid instantiation
}
/**
* Open document.
*
* @param projectFolder
* the project folder in workspace (ex.: /projectName)
* @param documentURL
* the full URL of document (LibreOffice format, ex.: file:///C:/folder/projectName/document.odt)
*/
public static void openDocument(String projectFolder, String documentURL) {
ODTEditor odtEditor = new ODTEditor(projectFolder);
odtEditor.openDocument(documentURL);
}
/**
* Close document.
*
* @param projectFolder
* the project folder in workspace (ex.: /projectName)
* @param documentURL
* the full URL of document (LibreOffice format, ex.: file:///C:/folder/projectName/document.odt)
*/
public static void closeDocument(String projectFolder, String documentURL) {
ODTEditor odtEditor = new ODTEditor(projectFolder);
odtEditor.closeDocument(documentURL);
}
/**
* Export document.
*
* @param fileName
* @param documentURL
* the full URL of document (LibreOffice format, ex.: file:///C:/folder/projectName/document.odt)
* @param extension to export
* @param projectFolder
* the project folder in workspace (ex.: /projectName)
* @return
* the full URL of exported document (LibreOffice format, ex.: file:///C:/folder/projectName/document.pdf)
*/
public static String exportDocument(String fileName, String documentURL, String extension, String projectFolder) {
ODTEditor odtEditor = new ODTEditor(projectFolder);
return odtEditor.exportDocument(fileName, documentURL, extension);
}
/**
* Send mail with attached document.
*
* @param subject
* @param documentToAttach
* the full URL of document (LibreOffice format, ex.: file:///C:/folder/projectName/document.odt)
* @param projectFolder
* the project folder in workspace (ex.: /projectName)
*/
public static void sendMail(String subject, String documentToAttach, String projectFolder) {
ODTEditor odtEditor = new ODTEditor(projectFolder);
odtEditor.sendMail(subject, documentToAttach);
}
}