All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.fluentlenium.core.conditions.ConditionsObject Maven / Gradle / Ivy

package org.fluentlenium.core.conditions;

/**
 * Wrap object inside a condition.
 *
 * @param  type of the object
 */
public interface ConditionsObject {
    /**
     * Get the actual object.
     *
     * @return actual object on which conditions are performed.
     */
    T getActualObject();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy