from __future__ import annotations
import collections.abc
import datetime
import typing
from warnings import deprecated # type: ignore

import jpype # type: ignore
import jpype.protocol # type: ignore

import ghidra.framework.plugintool


class SetHighlightPlugin(ghidra.framework.plugintool.Plugin):
    """
    Plugin to set the current selection to be a highlight or vice versa.
    """

    class_: typing.ClassVar[java.lang.Class]

    def __init__(self, tool: ghidra.framework.plugintool.PluginTool):
        """
        Constructor
        
        :param ghidra.framework.plugintool.PluginTool tool:
        """



__all__ = ["SetHighlightPlugin"]
