// 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 org.jdeferred.multiple; import org.jdeferred.Promise; public class OneResult { private final int index; private final Promise promise; private final Object result; public OneResult(int i, Promise promise1, Object obj) { index = i; promise = promise1; result = obj; } public int getIndex() { return index; } public Promise getPromise() { return promise; } public Object getResult() { return result; } public String toString() { return (new StringBuilder()).append("OneResult [index=").append(index).append(", promise=").append(promise).append(", result=").append(result).append("]").toString(); } }