1 // license-header java merge-point
2 //
3 // Attention: generated code (by Metafacade.vsl) - do not modify!
4 //
5 package org.andromda.metafacades.uml;
6
7 /**
8 * A front-end exception handler intercepts exceptions and delegates them into a front-end action
9 * state that will handle it (for example by simply displaying it if the action state happened to be
10 * a view) .
11 *
12 * Metafacade interface to be used by AndroMDA cartridges.
13 */
14 public interface FrontEndExceptionHandler
15 extends FrontEndForward
16 {
17 /**
18 * Indicates the metafacade type (used for metafacade mappings).
19 *
20 * @return boolean always <code>true</code>
21 */
22 public boolean isFrontEndExceptionHandlerMetaType();
23
24 /**
25 * Indicatesif this element carries the FrontEndException stereotype.
26 * @return boolean
27 */
28 public boolean isFrontEndException();
29 }