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

org.seleniumhq.selenium.fluent.Monitor Maven / Gradle / Ivy

package org.seleniumhq.selenium.fluent;

public interface Monitor {

    Timer start(String item);

    public interface Timer {
        void end();
        public class NULL implements Timer {
            public void end() {
            }
        }
    }

    public static class NULL implements Monitor {
        public Timer start(String item) {
            return new Timer.NULL();
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy