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.GeneralizationFacade; 008 009/** 010 * Represents a generalization between two metafacades. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface MetafacadeGeneralization 015 extends GeneralizationFacade 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isMetafacadeGeneralizationMetaType(); 023 024 /** 025 * The getter name to retrieve this generalization. 026 * @return String 027 */ 028 public String getGetterName(); 029 030 /** 031 * The visibility of the getter name for accessing this generalization. 032 * @return String 033 */ 034 public String getGetterNameVisibility(); 035 036 /** 037 * Stores the precedence of this generalization (this only matters when multiple inheritance is 038 * taken into account). 039 * @return Integer 040 */ 041 public Integer getPrecedence(); 042}