Class TerminalAddon
java.lang.Object
com.flowingcode.vaadin.addons.xterm.TerminalAddon
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ClientTerminalAddon,PreserveStateAddon
Represents an abstract base class for server-side add-ons designed to extend or modify the
functionality of an
XTermBase terminal instance.
Concrete add-on implementations should subclass this class to provide specific features. Each
add-on is tightly coupled with a specific XTermBase instance, allowing it to interact
with and enhance that terminal.
- Author:
- Javier Godoy / Flowing Code S.A.
- See Also:
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedTerminalAddon(XTermBase xterm) Constructs a newTerminalAddonand associates it with the providedXTermBaseinstance. -
Method Summary
-
Constructor Details
-
TerminalAddon
Constructs a newTerminalAddonand associates it with the providedXTermBaseinstance.- Parameters:
xterm- theXTermBaseinstance to which this add-on will be attached- Throws:
NullPointerException- if the providedxtermisnull
-