>>>>> "Stuart" == Stuart Ballard <stuart.a.ballard@xxxxxxxxx> writes: >> I like David's idea of a STUB comment. Stuart> Does anyone know if eclipse allows plugging in custom rules to produce Stuart> warnings, and where (if anywhere) there's documentation on how to Stuart> produce such rules? I don't know. Eclipse can easily find things like 'FIXME' comments, and the list of keywords to search for is configurable. So that would work. The unchecked exception idea would also work, since you can easily search for all references to a given class... if we had a new class for just this purpose, the search would only yield stubs. One thing I've done before to try to find some stubs is search for references to the various Error constructors. This is imprecise though. Tom