Theia API Documentation v1.65.0
    Preparing search index...

    A LabelProviderContribution determines how specific elements/nodes are displayed in the workbench. Theia views use a common LabelProvider to determine the label and/or an icon for elements shown in the UI. This includes elements in lists and trees, but also view specific locations like headers. The common LabelProvider collects all {@links LabelProviderContribution} and delegates to the contribution with the highest priority. This is determined via calling the LabelProviderContribution.canHandle function, so contributions define which elements they are responsible for. As arbitrary views can consume LabelProviderContributions, they must be generic for the covered element type, not view specific. Label providers and contributions can be used for arbitrary element and node types, e.g. for markers or domain-specific elements.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    envVariablesServer: EnvVariablesServer
    homePath: undefined | string
    onDidChangeEmitter: Emitter<DidChangeLabelEvent>
    workspaceService: WorkspaceService

    Accessors

    • get defaultFileIcon(): string

      Returns string

    • get defaultFolderIcon(): string

      Returns string

    • get onDidChange(): Event<DidChangeLabelEvent>

      Emit when something has changed that may result in this label provider returning a different value for one or more properties (name, icon etc).

      Returns Event<DidChangeLabelEvent>

    Methods