MCPcopy Index your code
hub / github.com/OpenSC/OpenSC-Java / DestroyableParent

Interface DestroyableParent

java/src/org/opensc/util/DestroyableParent.java:36–53  ·  view source on GitHub ↗

This interface is omplemented by all classes, which act as a parent for Destroyables. @author wglas

Source from the content-addressed store, hash-verified

34 * @author wglas
35 */
36public interface DestroyableParent
37{
38
39 /**
40 * Register a Destroyable for recursive destruction.
41 *
42 * @param destroyable The child to be registered.
43 */
44 public void register(Destroyable destroyable);
45
46 /**
47 * Deregister a Destroyable from recursive destruction.
48 *
49 * @param destroyable The child to be deregistered.
50 */
51 public void deregister(Destroyable destroyable);
52
53}

Callers 4

registerMethod · 0.65
DestroyableChildMethod · 0.65
deregisterMethod · 0.65
destroyMethod · 0.65

Implementers 2

PKCS11Providerjava/src/org/opensc/pkcs11/PKCS11Provi
DestroyableHolderjava/src/org/opensc/util/DestroyableHo

Calls

no outgoing calls

Tested by

no test coverage detected