ViewInfo.java

/*
 * Decompiled with CFR 0_132.
 */
package org.xutils.view;

final class ViewInfo {
    public int value;
    public int parentId;

    ViewInfo() {
    }

    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || this.getClass() != o.getClass()) {
            return false;
        }
        ViewInfo viewInfo = (ViewInfo)o;
        if (this.value != viewInfo.value) {
            return false;
        }
        return this.parentId == viewInfo.parentId;
    }

    public int hashCode() {
        int result = this.value;
        result = 31 * result + this.parentId;
        return result;
    }
}