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