Java tutorial
/* * Copyright 2014, by Benjamin Bertin and Contributors. * * This file is part of CarbonDB-reasoner project <http://www.carbondb.org> * * CarbonDB-reasoner 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 3 of the License, or * (at your option) any later version. * CarbonDB-reasoner 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 CarbonDB-reasoner. If not, see <http://www.gnu.org/licenses/>. * * Contributor(s): - * */ package com.mycsense.carbondb.domain; import com.mycsense.carbondb.domain.relation.Type; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; public class RelationType { protected String id; protected String label; protected String comment; protected Type type; public RelationType(String id, String label, Type type) { this.id = id; this.label = label; this.comment = ""; this.type = type; } public String getLabel() { return label; } public void setLabel(String label) { this.label = label; } public String getComment() { return comment; } public void setComment(String comment) { this.comment = comment; } public Type getType() { return type; } public void setType(Type type) { this.type = type; } public String getId() { return id; } public void setId(String id) { this.id = id; } @Override public boolean equals(Object obj) { if (!(obj instanceof RelationType)) return false; if (obj == this) return true; RelationType rhs = (RelationType) obj; return new EqualsBuilder().append(id, rhs.getId()).isEquals(); } @Override public int hashCode() { return new HashCodeBuilder(173, 677).append(id).toHashCode(); } }