TraceParameter.java

27 lines | 495 B Blame History Raw Download
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package br.ufrgs.inf.prosoft.trace;

import java.util.List;

/**
 *
 * @author romulo
 */
public class TraceParameter {

    private final List<Parameter> p;

    public TraceParameter(List<Parameter> p) {
        this.p = p;
    }

    public List<Parameter> getParameters() {
        return this.p;
    }

}