/******************************************************************************* * Copyright (c) 2010, 2011 Obeo. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Obeo - initial API and implementation *******************************************************************************/ package org.eclipse.mylyn.docs.intent.markup.markup; /** * <!-- begin-user-doc --> * A representation of the model object '<em><b>Section</b></em>'. * <!-- end-user-doc --> * * <p> * The following features are supported: * <ul> * <li>{@link org.eclipse.mylyn.docs.intent.markup.markup.Section#getTitle <em>Title</em>}</li> * <li>{@link org.eclipse.mylyn.docs.intent.markup.markup.Section#getLevel <em>Level</em>}</li> * </ul> * </p> * * @see org.eclipse.mylyn.docs.intent.markup.markup.MarkupPackage#getSection() * @model * @generated */ public interface Section extends StructureElement, Container, HasAttributes { /** * Returns the value of the '<em><b>Title</b></em>' containment reference. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Title</em>' containment reference isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Title</em>' containment reference. * @see #setTitle(Block) * @see org.eclipse.mylyn.docs.intent.markup.markup.MarkupPackage#getSection_Title() * @model containment="true" required="true" * @generated */ Block getTitle(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.intent.markup.markup.Section#getTitle <em>Title</em>}' containment reference. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Title</em>' containment reference. * @see #getTitle() * @generated */ void setTitle(Block value); /** * Returns the value of the '<em><b>Level</b></em>' attribute. * <!-- begin-user-doc --> * <p> * If the meaning of the '<em>Level</em>' attribute isn't clear, * there really should be more of a description here... * </p> * <!-- end-user-doc --> * @return the value of the '<em>Level</em>' attribute. * @see #setLevel(int) * @see org.eclipse.mylyn.docs.intent.markup.markup.MarkupPackage#getSection_Level() * @model * @generated */ int getLevel(); /** * Sets the value of the '{@link org.eclipse.mylyn.docs.intent.markup.markup.Section#getLevel <em>Level</em>}' attribute. * <!-- begin-user-doc --> * <!-- end-user-doc --> * @param value the new value of the '<em>Level</em>' attribute. * @see #getLevel() * @generated */ void setLevel(int value); } // Section