001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.hibernate.metafacades; 006 007import org.andromda.metafacades.uml.ParameterFacade; 008 009/** 010 * Represents an argument in a hibernate finder method. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface HibernateFinderMethodArgument 015 extends ParameterFacade 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isHibernateFinderMethodArgumentMetaType(); 023 024 /** 025 * The name for the method that will set the query argument. 026 * @return String 027 */ 028 public String getQueryArgumentNameSetter(); 029}