Corrected issue with Program metadata which included CustomerOption.

Cleanup PDB analyzer related error reporting.
This commit is contained in:
ghidra1 2020-10-08 12:44:41 -04:00
parent 4295690e0b
commit 3cd26120a3
13 changed files with 240 additions and 187 deletions

View file

@ -1,6 +1,5 @@
/* ###
* IP: GHIDRA
* REVIEWED: YES
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@ -32,4 +31,14 @@ public interface CustomOption {
*/
public void writeState(SaveState saveState);
/**
* CustomOption should implement this method to provide a formatted
* string value of this option value. The returned value will
* be used in support of the {@link Options#getValueAsString(String)}
* and {@link Options#getDefaultValueAsString(String)}.
* @return option value as string
*/
@Override
public String toString();
}