/** * Copyright (c) 2012 CEA LIST. * * 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: * Vincent Lorenzo (CEA LIST) vincent.lorenzo@cea.fr - Initial API and implementation */ package org.eclipse.papyrus.uml.profilefacet.metamodel.profilefacet; import org.eclipse.emf.common.util.EList; import org.eclipse.emf.ecore.EClass; import org.eclipse.emf.facet.infra.facet.Facet; /** * * A representation of the model object 'Stereotype Facet'. * * * * a 'StereotypeFacet' is used to represent a UML Stereotype * * *

* The following features are supported: *

*

* * @see org.eclipse.papyrus.uml.profilefacet.metamodel.profilefacet.ProfileFacetPackage#getStereotypeFacet() * @model * @generated */ public interface StereotypeFacet extends EClass, EObjectFacetRepresentation, Facet { /** * Returns the value of the 'Stereotype Qualified Name' attribute. * * * * the qualified name of the represented stereotype * * @return the value of the 'Stereotype Qualified Name' attribute. * @see #setStereotypeQualifiedName(String) * @see org.eclipse.papyrus.uml.profilefacet.metamodel.profilefacet.ProfileFacetPackage#getStereotypeFacet_StereotypeQualifiedName() * @model required="true" * @generated */ String getStereotypeQualifiedName(); /** * Sets the value of the '{@link org.eclipse.papyrus.uml.profilefacet.metamodel.profilefacet.StereotypeFacet#getStereotypeQualifiedName Stereotype Qualified Name}' attribute. * * * @param value the new value of the 'Stereotype Qualified Name' attribute. * @see #getStereotypeQualifiedName() * @generated */ void setStereotypeQualifiedName(String value); /** * * * @model kind="operation" * @generated */ EList getStereotypePropertyElements(); } // StereotypeFacet