接口 DebuggableMixin

所有超级接口:
SelfReportingMixin
所有已知实现类:
EphemeralRegistry, EventPoolService.EventPool, RegistryServices.BroadcastingRegistry, RegistryServices.PrivateStashedRegistry, UXLabel, WeakRegistry

public interface DebuggableMixin extends SelfReportingMixin
A [minimal] mixin sort of interface to allow for easy use of throwing exceptions using DebugService.

Example Usage

 class Foo
 implements DebuggableMixin
 {
 public Foo()
 {
 THROW_NOW("NoImpl Constructor");
 }
 }
 
作者:
Jack Meng