Merge remote-tracking branch 'origin/program_graph_updates2--SQUASHED'

This commit is contained in:
ghidravore 2020-08-25 13:02:59 -04:00
commit f84300819b
35 changed files with 1317 additions and 355 deletions

View file

@ -38,4 +38,9 @@ public interface GraphDisplayListener {
* @param vertexId the vertex id of the currently "focused" vertex
*/
public void locationChanged(String vertexId);
default boolean updateVertexName(String vertexId, String oldName, String newName) {
// no op
return false;
}
}