1 // license-header java merge-point 2 // 3 // Attention: generated code (by Metafacade.vsl) - do not modify! 4 // 5 package org.andromda.cartridges.ejb3.metafacades; 6 7 import org.andromda.metafacades.uml.ClassifierFacade; 8 9 /** 10 * TODO: Model Documentation for org.andromda.cartridges.ejb3.metafacades.EJB3EmbeddedValueFacade 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface EJB3EmbeddedValueFacade 15 extends ClassifierFacade 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isEJB3EmbeddedValueFacadeMetaType(); 23 24 /** 25 * Returns the fully qualified name of the embeddable value implementation class. 26 * @return String 27 */ 28 public String getFullyQualifiedImplementationName(); 29 30 /** 31 * Returns the name of the implementation class. 32 * @return String 33 */ 34 public String getImplementationName(); 35 36 /** 37 * Returns true if the embedded value object is immutable. 38 * @return boolean 39 */ 40 public boolean isImmutable(); 41 }