Uses of Interface
com.pnfsoftware.jeb.util.events.IEventListener
Packages that use IEventListener
Package
Description
The core package and sub-packages define classes and interfaces to interact with and
develop JEB back-end plugins.
Event and notification types used by the back-end.
Trivial implementations for the text package interfaces.
This package and sub-packages contains types used by the native code analysis pipeline, including
gendec (the generic decompiler).Types for library code signatures (siglib) generation and identification.
Types for "code-less" signatures.
Standard implementations of basic units objects.
Types to implement event sources, and event listeners.
-
Uses of IEventListener in com.pnfsoftware.jeb.core
Classes in com.pnfsoftware.jeb.core that implement IEventListener -
Uses of IEventListener in com.pnfsoftware.jeb.core.events
Methods in com.pnfsoftware.jeb.core.events that return types with arguments of type IEventListenerMethods in com.pnfsoftware.jeb.core.events with parameters of type IEventListenerModifier and TypeMethodDescriptionvoidJebEventSource.addListener(IEventListener listener) voidJebEventSource.insertListener(int index, IEventListener listener) voidJebEventSource.removeListener(IEventListener listener) -
Uses of IEventListener in com.pnfsoftware.jeb.core.output.text.impl
Methods in com.pnfsoftware.jeb.core.output.text.impl that return types with arguments of type IEventListenerModifier and TypeMethodDescriptionList<? extends IEventListener> AbstractTextPartAsDocumentProxy.getListeners()Methods in com.pnfsoftware.jeb.core.output.text.impl with parameters of type IEventListenerModifier and TypeMethodDescriptionvoidAbstractTextPartAsDocumentProxy.addListener(IEventListener listener) voidAbstractTextPartAsDocumentProxy.insertListener(int index, IEventListener listener) voidAbstractTextPartAsDocumentProxy.removeListener(IEventListener listener) -
Uses of IEventListener in com.pnfsoftware.jeb.core.units.code.asm
Methods in com.pnfsoftware.jeb.core.units.code.asm with parameters of type IEventListenerModifier and TypeMethodDescriptionvoidINativeContext.trackNativeItem(INativeType type, IEventListener listener) -
Uses of IEventListener in com.pnfsoftware.jeb.core.units.code.asm.sig
Classes in com.pnfsoftware.jeb.core.units.code.asm.sig that implement IEventListenerModifier and TypeClassDescriptionclassManage a set ofINativeSignaturePackage, such that a native item (routine, basic block, instruction or data) can be matched against theINativeSignaturecontained in these packages. -
Uses of IEventListener in com.pnfsoftware.jeb.core.units.code.asm.sig.codeless
Classes in com.pnfsoftware.jeb.core.units.code.asm.sig.codeless that implement IEventListenerModifier and TypeClassDescriptionclassManage a set ofExecutableModel, such that an unknown binary can be matched against these models (see {CodelessSignatureManager.match(INativeCodeUnit, CodelessSignaturePackageEntry)), or identified as containing code from the models (see {CodelessSignatureManager.identifyLibraries(INativeCodeUnit)). -
Uses of IEventListener in com.pnfsoftware.jeb.core.units.impl
Methods in com.pnfsoftware.jeb.core.units.impl that return types with arguments of type IEventListenerMethods in com.pnfsoftware.jeb.core.units.impl with parameters of type IEventListenerModifier and TypeMethodDescriptionvoidWrapperUnit.addListener(IEventListener listener) voidWrapperUnit.insertListener(int index, IEventListener listener) voidWrapperUnit.removeListener(IEventListener listener) -
Uses of IEventListener in com.pnfsoftware.jeb.util.events
Classes in com.pnfsoftware.jeb.util.events that implement IEventListenerMethods in com.pnfsoftware.jeb.util.events that return IEventListenerModifier and TypeMethodDescriptionstatic IEventListenerEventSource.relay(IEventSource origin, IEventSource proxy) Relay events issued from an origin to the listeners of a proxy.Methods in com.pnfsoftware.jeb.util.events that return types with arguments of type IEventListenerModifier and TypeMethodDescriptionEventSource.getListeners()List<? extends IEventListener> IEventSource.getListeners()Get a copy of the list of listeners.Methods in com.pnfsoftware.jeb.util.events with parameters of type IEventListenerModifier and TypeMethodDescriptionvoidEventSource.addListener(IEventListener listener) voidIEventSource.addListener(IEventListener listener) Register a listener.voidEventSource.insertListener(int index, IEventListener listener) voidIEventSource.insertListener(int index, IEventListener listener) Register a listener.voidEventSource.removeListener(IEventListener listener) voidIEventSource.removeListener(IEventListener listener) Unregister a listener.