Package ghidra.lifecycle
Interface Unfinished
public interface Unfinished
This serves both as a marker interface for classes missing important methods and as container for
 the 
TODO(String, Object...) method.
 
 
 TODO: It'd be nice to optionally ignore TODO exceptions, but this seems to require a dependency
 on JUnit, which is a no-no within src/main. Maybe there's a way via the abstract test
 case, or an interface mixin....
- 
Nested Class SummaryNested Classes
- 
Method SummaryStatic MethodsModifier and TypeMethodDescriptionstatic <T> TTODO()Perhaps a little better than returningnullor throwingUnsupportedOperationExceptionyourself, as references can be found in most IDEs.static <T> TPerhaps a little better than returningnullor throwingUnsupportedOperationExceptionyourself, as references can be found in most IDEs.
- 
Method Details- 
TODOPerhaps a little better than returningnullor throwingUnsupportedOperationExceptionyourself, as references can be found in most IDEs.- Parameters:
- message- A message describing the task that is yet to be done
- ignore- variables involved in the implementation so far
 
- 
TODOstatic <T> T TODO()Perhaps a little better than returningnullor throwingUnsupportedOperationExceptionyourself, as references can be found in most IDEs.
 
-