/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.uff.ic.dyevc.application.branchhistory.metric; /** * * @author wallace */ public class MetricCasing { private Metric metric; private int id; private String name; MetricCasing(String name, Metric metric){ this.name = name; this.metric = metric; } /** * @return the metric */ public Metric getMetric() { return metric; } /** * @param metric the metric to set */ public void setMetric(Metric metric) { this.metric = metric; } /** * @return the id */ public int getId() { return id; } /** * @param id the id to set */ public void setId(int id) { this.id = id; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } }