root/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/Criteria.java

/* [<][>][^][v][top][bottom][index][help] */

DEFINITIONS

This source file includes following definitions.
  1. isSatisfied

// Copyright 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

package org.chromium.content.browser.test.util;

/**
 * Provides a means for validating whether some condition/criteria has been met.
 */
public interface Criteria {

    /**
     * @return Whether the criteria this is testing has been satisfied.
     */
    public boolean isSatisfied();

}

/* [<][>][^][v][top][bottom][index][help] */