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

com.iwillfailyou.plugin.Failures Maven / Gradle / Ivy

The newest version!
package com.iwillfailyou.plugin;

import java.net.URL;

public interface Failures {
    void failIfRed() throws IwfyException;
    void show(Ui ui) throws IwfyException;
    void publish(URL url) throws IwfyException;

    final class Fake implements Failures {

        @Override
        public void failIfRed() {
            // ignored
        }

        @Override
        public void show(final Ui ui) {
            // ignored
        }

        @Override
        public void publish(final URL url) {
            // ignored
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy