001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.metafacades.uml;
006
007/**
008 * A signature containing the template parameters for the templated element (Class, operation,
009 * property, etc). A template signature bundles the set of formal template parameters for a
010 * templated element.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface RedefinableTemplateSignatureFacade
015    extends ModelElementFacade
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isRedefinableTemplateSignatureFacadeMetaType();
023
024    /**
025     * The Class which is templated.
026     * @return ClassifierFacade
027     */
028    public ClassifierFacade getClassifier();
029}