{
final ModelElementFacade property = (ModelElementFacade)iterator.next();
MethodData method = null;
if (property instanceof AttributeFacade)
{
final AttributeFacade attribute = (AttributeFacade)property;
method =
new MethodData(
fullyQualifiedName,
methodVisibility,
false,
attribute.getGetterSetterTypeName(),
attribute.getGetterName(),
attribute.getDocumentation(indendation));
}
else
{
final AssociationEndFacade association = (AssociationEndFacade)property;
method =