Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | 1x 2x 3x 5x 1x | import * as vscode from "vscode";
import { ClassNodeBase } from "../classes/class-node-base";
/**
* Node of a SKOS concept in the definition tree.
*/
export class ConceptClassNode extends ClassNodeBase {
override getIcon(): vscode.ThemeIcon | undefined {
return new vscode.ThemeIcon('rdf-concept', this.getIconColor());
}
override getIconColor() {
return new vscode.ThemeColor("mentor.color.concept");
}
override *getSubClassIris(): IterableIterator<string> {
yield* this.vocabulary.getNarrowerConcepts(this.getDocumentGraphs(), this.uri);
}
override getClassNode(iri: string) {
return this.createChildNode(ConceptClassNode, iri);
}
override getIndividualNode(iri: string) {
return this.createChildNode(ConceptClassNode, iri);
}
}
|