Uses of Class
metricsOverlay.model.metrics.Metric

Packages that use Metric
metricsOverlay.model Provides the high level model classes and model interfaces. 
metricsOverlay.model.mappings Dictates mapping and interpolation classes in the model. 
metricsOverlay.model.metrics Provides metrics and range classes for the model. 
metricsOverlay.preferences Provides the preference window pane controls and GUI elements. 
 

Uses of Metric in metricsOverlay.model
 

Methods in metricsOverlay.model that return Metric
 Metric MetricDocument.getMetric(java.lang.String metricName)
           
 

Methods in metricsOverlay.model that return types with arguments of type Metric
 java.util.Set<Metric> MetricDocument.getAllMetrics()
           
 

Methods in metricsOverlay.model with parameters of type Metric
 void MetricDocument.addMetric(Metric met)
           
 

Uses of Metric in metricsOverlay.model.mappings
 

Methods in metricsOverlay.model.mappings that return Metric
 Metric Mapping.getMetric()
          Returns the metric currently belonging to this mapping.
 

Methods in metricsOverlay.model.mappings with parameters of type Metric
 void Mapping.setMetric(Metric metric)
          Sets the metric to be used by this mapping algorithm.
 

Constructors in metricsOverlay.model.mappings with parameters of type Metric
Mapping(java.lang.String name, Metric met, Augmentation aug, InterpolationStrategy iStrat, MappingState state, boolean editable)
          Full Constructor.
 

Uses of Metric in metricsOverlay.model.metrics
 

Subclasses of Metric in metricsOverlay.model.metrics
 class ActualMetric
          This class represents and holds actual metrics data.
 class DerivedMetric
          This class represents a derived form of metric to allow displays to use the same metric sections.
 

Methods in metricsOverlay.model.metrics with parameters of type Metric
 int Metric.compareTo(Metric o)
           
 

Uses of Metric in metricsOverlay.preferences
 

Methods in metricsOverlay.preferences with parameters of type Metric
 void MetricsPrefController.setActiveMetric(Metric metric)