View Javadoc
1   package org.andromda.metafacades.emf.uml22;
2   
3   import org.andromda.metafacades.uml.UMLProfile;
4   
5   /**
6    * MetafacadeLogic implementation for
7    * org.andromda.metafacades.uml.FrontEndExceptionHandler.
8    *
9    * @see org.andromda.metafacades.uml.FrontEndExceptionHandler
10   */
11  public class FrontEndExceptionHandlerLogicImpl
12      extends FrontEndExceptionHandlerLogic
13  {
14      private static final long serialVersionUID = 34L;
15      /**
16       * @param metaObject
17       * @param context
18       */
19      public FrontEndExceptionHandlerLogicImpl(
20          final Object metaObject,
21          final String context)
22      {
23          super(metaObject, context);
24      }
25  
26      /**
27       * @see org.andromda.metafacades.uml.FrontEndExceptionHandler#isFrontEndException()
28       */
29      @Override
30      protected boolean handleIsFrontEndException()
31      {
32          return this.hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION);
33      }
34  }