* @see org.andromda.cartridges.meta.metafacades.MetafacadeGeneralization#getGetterNameVisibility()
*/
protected String handleGetGetterNameVisibility()
{
String visibility = "private";
GeneralizableElementFacade child = this.getChild();
if (child != null)
{
// if we have more than one generalization for the metafacade
// then we expose the super facade accessors.
Collection generalizations = child.getGeneralizations();
if ((generalizations != null) && (generalizations.size() > 1))
{
visibility = "protected";
}
}