* @throws EvolizerException the evolizer exception
*/
public void updateMetricValues(String metricIdentifier) throws EvolizerException {
SnapshotAnalyzer snapshotAnalyzer = fGraphPanel.getGraphLoader().getSnapshotAnalyzer();
DependencyGraph graph = fGraphPanel.getGraph();
NodeMap map = graph.getRegisteredNodeMaps()[0];
Node[] nodes = graph.getNodeArray();
for (int i = 0; i < nodes.length; i++) {
AbstractFamixEntity entity = (AbstractFamixEntity) map.get(nodes[i]);
// check if entity is already processed
// entities ending with <clinit>() or <oinit>() must be ignored to
// get suitable visual data
Set<String> possibleMetrics = MetricStore.listMetricsFor(entity);
if (!metricIdentifier.equalsIgnoreCase(PolymetricViewControllerView.METRIC_UNIFORM)) {