Package org.bitcoinj.wallet.listeners
Class AbstractKeyChainEventListener
- java.lang.Object
-
- org.bitcoinj.wallet.listeners.AbstractKeyChainEventListener
-
- All Implemented Interfaces:
KeyChainEventListener
public class AbstractKeyChainEventListener extends java.lang.Object implements KeyChainEventListener
-
-
Constructor Summary
Constructors Constructor Description AbstractKeyChainEventListener()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onKeysAdded(java.util.List<ECKey> keys)
Called whenever a new key is added to the key chain, whether that be via an explicit addition or due to some other automatic derivation.
-
-
-
Method Detail
-
onKeysAdded
public void onKeysAdded(java.util.List<ECKey> keys)
Description copied from interface:KeyChainEventListener
Called whenever a new key is added to the key chain, whether that be via an explicit addition or due to some other automatic derivation. See the documentation for yourKeyChain
implementation for details on what can trigger this event.- Specified by:
onKeysAdded
in interfaceKeyChainEventListener
-
-