blob: 9d0e433352e172fdfe98fe20ed045bfb612c6cff [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.emf.documentstructure;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Table Of Contents</b></em>'.
* <!-- end-user-doc -->
*
* <!-- begin-model-doc -->
* This element represents a Table Of Contents in the final document.
* <!-- end-model-doc -->
*
* <p>
* The following features are supported:
* </p>
* <ul>
* <li>{@link org.eclipse.papyrus.model2doc.emf.documentstructure.TableOfContents#getTocTitle <em>Toc Title</em>}</li>
* </ul>
*
* @see org.eclipse.papyrus.model2doc.emf.documentstructure.DocumentStructurePackage#getTableOfContents()
* @model
* @generated
*/
public interface TableOfContents extends TextDocumentPart {
/**
* Returns the value of the '<em><b>Toc Title</b></em>' attribute.
* The default value is <code>"Table Of Contents"</code>.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* <!-- begin-model-doc -->
* The title to use for the created Table of Contents.
* <!-- end-model-doc -->
*
* @return the value of the '<em>Toc Title</em>' attribute.
* @see #setTocTitle(String)
* @see org.eclipse.papyrus.model2doc.emf.documentstructure.DocumentStructurePackage#getTableOfContents_TocTitle()
* @model default="Table Of Contents" required="true" ordered="false"
* @generated
*/
String getTocTitle();
/**
* Sets the value of the '{@link org.eclipse.papyrus.model2doc.emf.documentstructure.TableOfContents#getTocTitle <em>Toc Title</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @param value
* the new value of the '<em>Toc Title</em>' attribute.
* @see #getTocTitle()
* @generated
*/
void setTocTitle(String value);
} // TableOfContents