blob: 011bcead8143fe129a008e483b905a4adddd71b4 [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.onefile;
import org.eclipse.core.resources.IFile;
import org.eclipse.papyrus.infra.onefile.model.IPapyrusFile;
import org.eclipse.papyrus.model2doc.core.onefile.file.GeneratedDocumentSubResourceFile;
import org.eclipse.papyrus.model2doc.odt.service.ODTEditorService;
/**
* This class for dealing with generated odt document as sub resource file.
*
* @since 3.0
*/
public class ODTDocumentSubResourceFile extends GeneratedDocumentSubResourceFile {
/**
* Constructor.
*
* @param papyrusFile
* @param file
*/
public ODTDocumentSubResourceFile(IPapyrusFile papyrusFile, IFile file) {
super(papyrusFile, file);
}
@Override
protected boolean isExtensionOfGeneratedDocument(String extension) {
return ODTEditorService.DOCUMENT_KIND.equals(extension);
}
}