blob: 03be06404da95b696daed7550ecc8671d2e5cadf [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:
* Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation
*/
package org.eclipse.papyrus.model2doc.core.builtintypes;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Default File Reference</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* Default implementation of IFileReference.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.model2doc.core.builtintypes.DefaultFileReference#getFilePath <em>File Path</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.model2doc.core.builtintypes.BuiltInTypesPackage#getDefaultFileReference()
* @model
* @generated
*/
public interface DefaultFileReference extends IFileReference {
/**
* Returns the value of the '<em><b>File Path</b></em>' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* This element allow to reference a file (.txt, odt, ... ). Return the path of the referenced file. The path can be a platform:/resource, a platform:/plugin, a path in the current project or a system path (ex: c:\MyDocuments).
* <!-- end-model-doc -->
*
* @return the value of the '<em>File Path</em>' attribute.
* @see #setFilePath(String)
* @see org.eclipse.papyrus.model2doc.core.builtintypes.BuiltInTypesPackage#getDefaultFileReference_FilePath()
* @model required="true" ordered="false"
* @generated
*/
@Override
String getFilePath();
/**
* Sets the value of the '{@link org.eclipse.papyrus.model2doc.core.builtintypes.DefaultFileReference#getFilePath <em>File Path</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>File Path</em>' attribute.
* @see #getFilePath()
* @generated
*/
void setFilePath(String value);
} // DefaultFileReference