IMetricLabelProvider.java

Go to the documentation of this file.
00001 package edu.rice.cs.hpc.viewer.metric;
00002 
00003 import org.eclipse.swt.graphics.Color;
00004 import org.eclipse.swt.graphics.Font;
00005 
00006 public interface IMetricLabelProvider {
00007     public Color getBackground(Object element);
00008     public Color getForeground(Object element);
00009     public Font getFont(Object element);
00010     public String getText(Object element);
00011     public boolean isEnabled();
00012     
00013     public void setScope(Object scope);
00014     public void setMetric(Object metric);
00015 }

Generated on 5 May 2015 for HPCVIEWER by  doxygen 1.6.1