1 // license-header java merge-point 2 // 3 // Attention: generated code (by Metafacade.vsl) - do not modify! 4 // 5 package org.andromda.cartridges.hibernate.metafacades; 6 7 import org.andromda.metafacades.uml.ParameterFacade; 8 9 /** 10 * Represents an argument in a hibernate finder method. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface HibernateFinderMethodArgument 15 extends ParameterFacade 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isHibernateFinderMethodArgumentMetaType(); 23 24 /** 25 * The name for the method that will set the query argument. 26 * @return String 27 */ 28 public String getQueryArgumentNameSetter(); 29 }