// Decompiled by Jad v1.5.8e. Copyright 2001 Pavel Kouznetsov. // Jad home page: http://www.geocities.com/kpdus/jad.html // Decompiler options: braces fieldsfirst space lnc package com.olio.data.object.assistant.rule; import java.io.Serializable; import org.apache.commons.lang3.builder.EqualsBuilder; import org.apache.commons.lang3.builder.HashCodeBuilder; public class ContextContainer implements Serializable { private static final long serialVersionUID = 0x9d5ddff8757a8a13L; public String name; public String value; public ContextContainer() { } public ContextContainer(String s, String s1) { name = s; value = s1; } public boolean equals(Object obj) { if (this == obj) { return true; } if (obj == null || getClass() != obj.getClass()) { return false; } else { obj = (ContextContainer)obj; return (new EqualsBuilder()).append(name, ((ContextContainer) (obj)).name).append(value, ((ContextContainer) (obj)).value).isEquals(); } } public int hashCode() { return (new HashCodeBuilder(17, 37)).append(name).append(value).toHashCode(); } }