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.java.metafacades;
6   
7   import org.andromda.metafacades.uml.ClassifierFacade;
8   
9   /**
10   * Represents a Java class.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface JavaClass
15      extends ClassifierFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isJavaClassMetaType();
23  
24      /**
25       * The fully qualified inteface implementation name.
26       * @return String
27       */
28      public String getFullyQualifiedInterfaceImplementationName();
29  
30      /**
31       * The name of the interface implementation.
32       * @return String
33       */
34      public String getInterfaceImplementationName();
35  
36      /**
37       * Whether or not the inteface implementation should be an abstract class.
38       * @return boolean
39       */
40      public boolean isAbstractInterfaceImplementation();
41  }