/** Selects Node and Edge Attributes in the Attribute Table Viewer. */
public static void selectTableAttributes(List<String> nAtts, List<String> eAtts){
// selected node attributes
AttributeBrowser nodeAttributeBrowser = AttributeBrowserPlugin.getAttributeBrowser(browser.DataObjectType.NODES);
nodeAttributeBrowser.setSelectedAttributes(nAtts);
// selected edge attributes
AttributeBrowser edgeAttributeBrowser = AttributeBrowserPlugin.getAttributeBrowser(browser.DataObjectType.EDGES);
edgeAttributeBrowser.setSelectedAttributes(eAtts);
}