001 package org.sonar.ide.api;
002
003 import org.sonar.wsclient.services.Metric;
004
005 /**
006 * @author Evgeny Mandrikov
007 * @since 0.2
008 */
009 public interface IMeasure {
010
011 Metric getMetricDef();
012
013 String getValue();
014
015 }