001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.meta.metafacades; 006 007import org.andromda.metafacades.uml.OperationFacade; 008 009/** 010 * Represents a metafacade operation. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface MetafacadeOperation 015 extends OperationFacade 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isMetafacadeOperationMetaType(); 023 024 /** 025 * The implementation name for the operation that handles the logic of the operation. 026 * @return String 027 */ 028 public String getImplementationName(); 029}