package de.swm.gwt.linker.server; import java.io.Serializable; /** * * @author Daniel Kurka (see http://code.google.com/p/mgwt/) * */ public class BindingProperty implements Serializable { private static final long serialVersionUID = -4176373787349662615L; private final String name; private final String value; public BindingProperty(String name, String value) { this.name = name; this.value = value; } public String getName() { return name; } public String getValue() { return value; } @Override public int hashCode() { final int prime = 31; int result = 1; result = prime * result + ((name == null) ? 0 : name.hashCode()); result = prime * result + ((value == null) ? 0 : value.hashCode()); return result; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; BindingProperty other = (BindingProperty) obj; if (name == null) { if (other.name != null) return false; } else if (!name.equals(other.name)) return false; if (value == null) { if (other.value != null) return false; } else if (!value.equals(other.value)) return false; return true; } @Override public String toString() { return "BindingProperty [name=" + name + ", value=" + value + "]"; } }