View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.cartridges.ejb.metafacades;
6   
7   import org.andromda.metafacades.uml.EntityAssociationEnd;
8   
9   /**
10   * Represents an EJB association end.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface EJBAssociationEndFacade
15      extends EntityAssociationEnd
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isEJBAssociationEndFacadeMetaType();
23  
24      /**
25       * The target type for a relation. If the relation target has a multiplicity of 0..1 or 1, this
26       * is the fully qualified type name of  the target. If it has a multiplicity of >1, this is the
27       * string 'java.util.Collection'
28       * @return String
29       */
30      public String getRelationType();
31  }