From 93c92506101fec7f0cff6b63d7e223ae97f20717 Mon Sep 17 00:00:00 2001 From: Ilya Ryzhenkov Date: Sat, 12 Jul 2014 16:28:57 +0400 Subject: Add JavaSignatureGenerator (no properties or ojects yet) --- src/Model/DocumentationNode.kt | 2 +- src/Model/DocumentationNodeBuilder.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src/Model') diff --git a/src/Model/DocumentationNode.kt b/src/Model/DocumentationNode.kt index da0f27e5..ad1c3d57 100644 --- a/src/Model/DocumentationNode.kt +++ b/src/Model/DocumentationNode.kt @@ -49,7 +49,7 @@ public open class DocumentationNode(val descriptor: DeclarationDescriptor, Package Class - Trait + Interface Object Constructor diff --git a/src/Model/DocumentationNodeBuilder.kt b/src/Model/DocumentationNodeBuilder.kt index 8fa12012..60f9ca0d 100644 --- a/src/Model/DocumentationNodeBuilder.kt +++ b/src/Model/DocumentationNodeBuilder.kt @@ -43,7 +43,7 @@ class DocumentationNodeBuilder(val context: BindingContext) : DeclarationDescrip val doc = context.getDocumentation(descriptor!!) val node = DocumentationNode(descriptor, descriptor.getName().asString(), doc, when (descriptor.getKind()) { ClassKind.OBJECT -> DocumentationNode.Kind.Object - ClassKind.TRAIT -> DocumentationNode.Kind.Trait + ClassKind.TRAIT -> DocumentationNode.Kind.Interface else -> DocumentationNode.Kind.Class }) data!!.addReferenceTo(node, DocumentationReference.Kind.Member) -- cgit