/* * Copyright (C) 2014 Language In Interaction * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ package nl.ru.languageininteraction.language.client.model; import java.util.Objects; /** * @since Oct 14, 2014 1:17:57 PM (creation date) * @author Peter Withers <p.withers@psych.ru.nl> */ public class Stimulus { private final String value; public Stimulus(String value) { this.value = value; } public String getValue() { return value; } @Override public int hashCode() { int hash = 3; hash = 89 * hash + Objects.hashCode(this.value); return hash; } @Override public boolean equals(Object obj) { if (obj == null) { return false; } if (getClass() != obj.getClass()) { return false; } final Stimulus other = (Stimulus) obj; return this.value.equals(other.value); } }