01: package org.andromda.metafacades.emf.uml2;
02:
03: import org.andromda.metafacades.uml.UMLProfile;
04:
05: /**
06: * MetafacadeLogic implementation for
07: * org.andromda.metafacades.uml.FrontEndExceptionHandler.
08: *
09: * @see org.andromda.metafacades.uml.FrontEndExceptionHandler
10: */
11: public class FrontEndExceptionHandlerLogicImpl extends
12: FrontEndExceptionHandlerLogic {
13: public FrontEndExceptionHandlerLogicImpl(final Object metaObject,
14: final String context) {
15: super (metaObject, context);
16: }
17:
18: /**
19: * @see org.andromda.metafacades.uml.FrontEndExceptionHandler#isFrontEndException()
20: */
21: protected boolean handleIsFrontEndException() {
22: return this
23: .hasStereotype(UMLProfile.STEREOTYPE_FRONT_END_EXCEPTION);
24: }
25: }
|