blob: 342551bf93066a57c61517dcbe4935de98ffe4ab [file] [log] [blame]
/**
* <copyright>
*
* Copyright (c) 2011 E.D.Willink and others.
* 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:
* E.D.Willink - initial API and implementation
*
* </copyright>
*
* $Id$
*/
package org.eclipse.ocl.examples.xtext.markup;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Heading Element</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ocl.examples.xtext.markup.HeadingElement#getLevel <em>Level</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ocl.examples.xtext.markup.MarkupPackage#getHeadingElement()
* @model
* @generated
*/
public interface HeadingElement extends CompoundElement {
/**
* 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(String)
* @see org.eclipse.ocl.examples.xtext.markup.MarkupPackage#getHeadingElement_Level()
* @model derived="true"
* @generated
*/
String getLevel();
/**
* Sets the value of the '{@link org.eclipse.ocl.examples.xtext.markup.HeadingElement#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(String value);
} // HeadingElement