blob: 1fc83c3832d70b6dcf75026d3c24e5a06e05885b [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011, 2013 Formal Mind GmbH and University of Dusseldorf.
* 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:
* Michael Jastram - initial API and implementation
******************************************************************************/
package org.eclipse.rmf.reqif10.pror.presentation.headline;
import org.eclipse.rmf.reqif10.pror.configuration.ProrPresentationConfiguration;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Configuration</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlineConfiguration#getSize <em>Size</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlinePackage#getHeadlineConfiguration()
* @model
* @generated
*/
public interface HeadlineConfiguration extends ProrPresentationConfiguration {
/**
* Returns the value of the '<em><b>Size</b></em>' attribute.
* The default value is <code>"14"</code>.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Size</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Size</em>' attribute.
* @see #isSetSize()
* @see #unsetSize()
* @see #setSize(int)
* @see org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlinePackage#getHeadlineConfiguration_Size()
* @model default="14" unsettable="true" required="true"
* @generated
*/
int getSize();
/**
* Sets the value of the '{@link org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlineConfiguration#getSize <em>Size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Size</em>' attribute.
* @see #isSetSize()
* @see #unsetSize()
* @see #getSize()
* @generated
*/
void setSize(int value);
/**
* Unsets the value of the '{@link org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlineConfiguration#getSize <em>Size</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @see #isSetSize()
* @see #getSize()
* @see #setSize(int)
* @generated
*/
void unsetSize();
/**
* Returns whether the value of the '{@link org.eclipse.rmf.reqif10.pror.presentation.headline.HeadlineConfiguration#getSize <em>Size</em>}' attribute is set.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @return whether the value of the '<em>Size</em>' attribute is set.
* @see #unsetSize()
* @see #getSize()
* @see #setSize(int)
* @generated
*/
boolean isSetSize();
} // HeadlineConfiguration