blob: 2e09abe61567c93645a3d6bd9d00ea1eed5964f2 [file] [log] [blame]
/**
* Copyright (c) 2010, 2012 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.bridge.tags;
import org.eclipse.emf.cdo.CDOObject;
/**
* <!-- begin-user-doc -->
* A representation of the model object '<em><b>Tagged Block</b></em>'.
* <!-- end-user-doc -->
*
* <p>
* The following features are supported:
* <ul>
* <li>{@link org.eclipse.mylyn.docs.intent.bridge.tags.TaggedBlock#getTag <em>Tag</em>}</li>
* <li>{@link org.eclipse.mylyn.docs.intent.bridge.tags.TaggedBlock#getContent <em>Content</em>}</li>
* </ul>
* </p>
*
* @see org.eclipse.mylyn.docs.intent.bridge.tags.TagsPackage#getTaggedBlock()
* @model
* @extends CDOObject
* @generated
*/
public interface TaggedBlock extends CDOObject {
/**
* Returns the value of the '<em><b>Tag</b></em>' attribute.
* <!-- begin-user-doc -->
* <p>
* If the meaning of the '<em>Tag</em>' attribute isn't clear,
* there really should be more of a description here...
* </p>
* <!-- end-user-doc -->
* @return the value of the '<em>Tag</em>' attribute.
* @see #setTag(String)
* @see org.eclipse.mylyn.docs.intent.bridge.tags.TagsPackage#getTaggedBlock_Tag()
* @model required="true"
* @generated
*/
String getTag();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.intent.bridge.tags.TaggedBlock#getTag <em>Tag</em>}' attribute.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @param value the new value of the '<em>Tag</em>' attribute.
* @see #getTag()
* @generated
*/
void setTag(String value);
/**
* 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 org.eclipse.mylyn.docs.intent.bridge.tags.TagsPackage#getTaggedBlock_Content()
* @model
* @generated
*/
String getContent();
/**
* Sets the value of the '{@link org.eclipse.mylyn.docs.intent.bridge.tags.TaggedBlock#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);
} // TaggedBlock