001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.metafacades.uml; 006 007/** 008 * A front-end exception handler intercepts exceptions and delegates them into a front-end action 009 * state that will handle it (for example by simply displaying it if the action state happened to be 010 * a view) . 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface FrontEndExceptionHandler 015 extends FrontEndForward 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isFrontEndExceptionHandlerMetaType(); 023 024 /** 025 * Indicatesif this element carries the FrontEndException stereotype. 026 * @return boolean 027 */ 028 public boolean isFrontEndException(); 029}