blob: 498b43452131b851a305050819c58beee2348fab [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2012-2014 SAP SE.
* 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:
* SAP SE - initial API and implementation and/or initial documentation
*
*******************************************************************************/
/**
*/
package org.eclipse.ogee.model.odata;
import org.eclipse.emf.ecore.EObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Documentation</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.ogee.model.odata.Documentation#getSummary <em>Summary</em>}</li>
* <li>{@link org.eclipse.ogee.model.odata.Documentation#getLongDescription <em>Long Description</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.ogee.model.odata.OdataPackage#getDocumentation()
* @model
* @generated
*/
public interface Documentation extends EObject {
/**
* Returns the value of the '<em><b>Summary</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Summary</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Summary</em>' attribute.
* @see #setSummary(String)
* @see org.eclipse.ogee.model.odata.OdataPackage#getDocumentation_Summary()
* @model
* @generated
*/
String getSummary();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.Documentation#getSummary <em>Summary</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Summary</em>' attribute.
* @see #getSummary()
* @generated
*/
void setSummary(String value);
/**
* Returns the value of the '<em><b>Long Description</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Long Description</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Long Description</em>' attribute.
* @see #setLongDescription(String)
* @see org.eclipse.ogee.model.odata.OdataPackage#getDocumentation_LongDescription()
* @model
* @generated
*/
String getLongDescription();
/**
* Sets the value of the '{@link org.eclipse.ogee.model.odata.Documentation#getLongDescription <em>Long Description</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Long Description</em>' attribute.
* @see #getLongDescription()
* @generated
*/
void setLongDescription(String value);
} // Documentation