View Javadoc
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   /**
8    * A representation of the model object 'Directed Relationship'.Represents a relationship between a
9    * collection of source model elements and a collection of target model elements, a
10   * dependency/reference.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface DependencyFacade
15      extends ModelElementFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isDependencyFacadeMetaType();
23  
24      /**
25       * The "getter" name for this dependency.
26       * @return String
27       */
28      public String getGetterName();
29  
30      /**
31       * The "setter" name for this dependency.
32       * @return String
33       */
34      public String getSetterName();
35  
36      /**
37       * The source element of this dependency.
38       * @return ModelElementFacade
39       */
40      public ModelElementFacade getSourceElement();
41  
42      /**
43       * Gets the element to which the dependencies belong.
44       * @return ModelElementFacade
45       */
46      public ModelElementFacade getTargetElement();
47  }