This repository has been archived on 2026-05-27. You can view files and clone it, but cannot push or open issues or pull requests.
HELYX-OS-Personal/src/eu/engys/core/dictionary/FieldElement.java
HELYX-OS Development Team b658f2e87f v240
2016-11-22 16:51:15 +01:00

79 lines
3.1 KiB
Java

/*******************************************************************************
* | o |
* | o o | HELYX-OS: The Open Source GUI for OpenFOAM |
* | o O o | Copyright (C) 2012-2016 ENGYS |
* | o o | http://www.engys.com |
* | o | |
* |---------------------------------------------------------------------------|
* | License |
* | This file is part of HELYX-OS. |
* | |
* | HELYX-OS 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. |
* | |
* | HELYX-OS 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 HELYX-OS; if not, write to the Free Software Foundation, |
* | Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
*******************************************************************************/
package eu.engys.core.dictionary;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
public class FieldElement extends DefaultElement {
private String value;
public FieldElement(String name, String value) {
super(name);
this.value = value;
}
public FieldElement(FieldElement el) {
this(el.getName(), el.getValue());
}
public void setValue(String value) {
this.value = value;
}
public String getValue() {
return value;
}
@Override
public String toString() {
return getName() + "[" + value + "]";
}
@Override
public boolean equals(Object obj) {
if (!(obj instanceof FieldElement)) {
return false;
}
if (obj == this) {
return true;
}
FieldElement fe = (FieldElement) obj;
return new EqualsBuilder()
.appendSuper(super.equals(obj))
.append(value, fe.value)
.isEquals();
}
@Override
public int hashCode() {
return new HashCodeBuilder(17, 31)
.appendSuper(super.hashCode())
.append(value)
.toHashCode();
}
}