1 // license-header java merge-point
2 //
3 // Attention: generated code (by Metafacade.vsl) - do not modify!
4 //
5 package org.andromda.metafacades.uml;
6
7 import java.util.Collection;
8
9 /**
10 * A representation of the model object 'Template Binding'. Represents a relationship between a
11 * templateable element and a template. Specifies the substitutions of actual parameters for the
12 * formal parameters of the template.
13 *
14 * Metafacade interface to be used by AndroMDA cartridges.
15 */
16 public interface BindingFacade
17 extends DependencyFacade
18 {
19 /**
20 * Indicates the metafacade type (used for metafacade mappings).
21 *
22 * @return boolean always <code>true</code>
23 */
24 public boolean isBindingFacadeMetaType();
25
26 /**
27 * The arguments for this binding.
28 * @return Collection<TemplateArgumentFacade>
29 */
30 public Collection<TemplateArgumentFacade> getArguments();
31 }