
views.class.korte Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javadoc-plugin Show documentation
Show all versions of javadoc-plugin Show documentation
Dokka is an API documentation engine for Kotlin
{% extends "components/base.korte" %}
{% block content %}
Package {{ packageName }}
{{ kind|capitalize }} {{ name }}
-
{% if implementedInterfaces.size != 0 %}
- All Implemented Interfaces:
-
{% for name in implementedInterfaces %}
{{ name }}
{% if !loop.last %}
,
{% endif %}
{% endfor %}
{% endif %}
{% if signature.annotations != null %}{{ signature.annotations|raw }} {% endif %}
{{ signature.modifiers }} {{ signature.signatureWithoutModifiers|raw }}
{% if signature.supertypes != null %}{{signature.supertypes|raw}}{% endif %}
{{ classlikeDocumentation|raw }}
{% if sinceTagContent.size() != 0 %}
- Since:
{% for since in sinceTagContent %}
- {{ since|raw }}
{% endfor %}
{% endif %}
{% if authorTagContent.size() != 0 %}
{% for author in authorTagContent %}
- {{ author|raw }}
{% endfor %}
{% endif %}
-
{% if classlikes.size != 0 %}
-
Nested Class Summary
Nested Classes
Modifier and Type
Class
Description
{% for classlike in classlikes %}
{{ classlike.modifiers }}
{{ classlike.signature }}
{{ classlike.description|raw }}
{% endfor %}
{% endif %}
{% if properties.size != 0 %}
{% endif %}
{% if constructors.size != 0 %}
-
Constructor Summary
Constructors
Constructor
Description
{% for constructor in constructors %}
{{ constructor.name }}({{ constructor.inlineParameters|raw }})
{{ constructor.brief|raw }}
{% endfor %}
{% endif %}
{% if entries.size != 0 %}
{% endif %}
{% if methods.own.size !=0 || methods.inherited.size != 0 %}
-
Method Summary
Modifier and Type
Method
Description
{% for method in methods.own %}
{{ method.signature.modifiers|raw }}
{{ method.signature.signatureWithoutModifiers|raw }}
{{ method.brief|raw }}
{% endfor %}
{% endif %}
-
{% if constructors.size != 0 %}
-
Constructor Detail
{% for constructor in constructors %}
-
{{ constructor.name }}
{{ constructor.name }}({{ constructor.inlineParameters|raw }})
{{ constructor.brief|raw}}
{% if constructor.parameters.size != 0 && hasAnyDescription(constructor.parameters) %}
- Parameters:
{% for parameter in constructor.parameters %}
{% if parameter.description != "" %}
{{ parameter.name }}
- {{ parameter.description|raw }}
{% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% if methods.own.size != 0 %}
-
Method Detail
{% for method in methods.own %}
-
{{ method.name }}
{{ method.signature.annotations|raw }} {{ method.signature.modifiers|raw }} {{ method.signature.signatureWithoutModifiers|raw}}
{{ method.description|raw }}
{% if method.parameters.size != 0 && hasAnyDescription(method.parameters) %}
- Parameters:
{% for parameter in method.parameters %}
{% if parameter.description != "" %}
{{ parameter.name }}
- {{ parameter.description|raw }}
{% endif %}
{% endfor %}
{% endif %}
{% if method.returnTagContent != "" %}
- Returns:
- {{ method.returnTagContent|raw }}
{% endif %}
{% if method.sinceTagContent.size() != 0 %}
- Since:
{% for since in method.sinceTagContent %}
- {{ since|raw }}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %}
{% end %}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy