/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package br.uff.ic.oceano.ostra.controller; /** * * @author wallace */ public class ElementSet { private String value; ElementSet(String value){ this.value = value; } public String getValue(){ return value; } public void setValue(String value){ this.value = value; } }