blob: bc4f9769d0e303f074c937919e45829bc8a424cc [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2016 KPIT Technologies.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/org/documents/epl-2.0/EPL-2.0.html
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Jan Mauersberger- initial API and implementation
* Sascha Baumgart- initial API and implementation
*******************************************************************************/
/**
*/
package claimtypes;
import org.eclipse.emf.cdo.CDOObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Sentence Structure</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link claimtypes.SentenceStructure#getContent <em>Content</em>}</li>
* </ul>
* </p>
*
* @see claimtypes.ClaimtypesPackage#getSentenceStructure()
* @model
* @extends CDOObject
* @generated
*/
public interface SentenceStructure extends CDOObject {
/**
* Returns the value of the '<em><b>Content</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Content</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Content</em>' attribute.
* @see #setContent(String)
* @see claimtypes.ClaimtypesPackage#getSentenceStructure_Content()
* @model
* @generated
*/
String getContent();
/**
* Sets the value of the '{@link claimtypes.SentenceStructure#getContent <em>Content</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Content</em>' attribute.
* @see #getContent()
* @generated
*/
void setContent(String value);
} // SentenceStructure