{{ strings.objectTasks.title }}
{% for section in object.methods.sections %}
{% if object.methods.sections.@count > 1 %}
{% if section.sectionName %}
{{ section.sectionName }}
{% else %}
{{ strings.objectTasks.otherMethodsSectionName }}
{% /if %}
{% else %}
{% if section.sectionName %}
{{ section.sectionName }}
{% /if %}
{% /if %}
{% for method in section.methods %}
-
{% section execute MethodSelector method method %}{% /section %}
{% if method.comment.firstParagraph %}
{% section execute GBCommentParagraph paragraph method.comment.firstParagraph %}{% /section %}
{% /if %}
{% if method.isRequired %}
{{ strings.objectTasks.requiredMethod }}
{% /if %}
{% /for %}
{% /for %}
{% /if %}
{% section execute MethodsSection methods object.methods.classMethods title strings.objectMethods.classMethodsTitle %}{% /section %}
{% section execute MethodsSection methods object.methods.instanceMethods title strings.objectMethods.instanceMethodsTitle %}{% /section %}
{% section execute MethodsSection methods object.methods.properties title strings.objectMethods.propertiesTitle %}{% /section %}