/** * Copyright (c) 2011 Mia-Software. * * 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: * Gregoire Dupe (Mia-Software) - Design * Nicolas Guyomar (Mia-Software) - Implementation * Emmanuelle Rouillé (Mia-Software) - Bug 352618 - To be able to use non derived facet structural features and save them values. * Nicolas Bros (Mia-Software) - Bug 361823 - [Restructuring] eFacet2 meta-model */ package org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet; import org.eclipse.emf.ecore.EObject; /** * * A representation of the model object 'Documented Element'. * * *

* The following features are supported: *

*

* * @see org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage#getDocumentedElement() * @model * @generated */ public interface DocumentedElement extends EObject { /** * Returns the value of the 'Documentation' attribute. * *

* If the meaning of the 'Documentation' attribute isn't clear, * there really should be more of a description here... *

* * @return the value of the 'Documentation' attribute. * @see #setDocumentation(String) * @see org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet.EFacetPackage#getDocumentedElement_Documentation() * @model * @generated */ String getDocumentation(); /** * Sets the value of the '{@link org.eclipse.emf.facet.efacet.metamodel.v0_2_0.efacet.DocumentedElement#getDocumentation Documentation}' attribute. * * * @param value the new value of the 'Documentation' attribute. * @see #getDocumentation() * @generated */ void setDocumentation(String value); } // DocumentedElement