/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.uff.ic.oceano.util.model; /** * * @author DanCastellani */ public class Attribute { private String name; private String value; public Attribute() { } public Attribute(String name, String value) { this.name = name; this.value = value; } /** * @return the name */ public String getName() { return name; } /** * @param name the name to set */ public void setName(String name) { this.name = name; } /** * @return the value */ public String getValue() { return value; } /** * @param value the value to set */ public void setValue(String value) { this.value = value; } }