Interface EditorKitProvider

All Known Implementing Classes:
DefaultEditorKitProvider

public interface EditorKitProvider
An interface for providing an EditorKit for a given programming language. This allows the generic UI to be configured with IDE-specific editor kits.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets a Swing EditorKit suitable for rendering the specified language.
  • Method Details

    • getEditorKitForLanguage

      EditorKit getEditorKitForLanguage(String language)
      Gets a Swing EditorKit suitable for rendering the specified language.
      Parameters:
      language - The programming language (e.g., "java", "html", "xml").
      Returns:
      An EditorKit instance, or null if no specific kit is available.