} else if (metadata instanceof InstanceMethodMetadata) {
ClassInstanceIdentifier classInstanceID = featureName.toInstanceIdentifier();
ModuleTypeInfo moduleTypeInfoForFeature = owner.getPerspective().getMetaModule(featureName.toModuleName()).getTypeInfo();
ClassInstance instance = moduleTypeInfoForFeature.getClassInstance(classInstanceID);
CALDocComment caldoc = instance.getMethodCALDocComment(featureName.toInstanceMethodName());
buffer.append(getBasicMetadataHtml(owner, metadata, caldoc));
buffer.append(getInstanceMethodMetadataHtml(owner, (InstanceMethodMetadata) metadata, url, caldoc));
buffer.append(getAdditionalMetadataHtml(owner, metadata, caldoc));
}
}