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

org.comroid.api.Factory Maven / Gradle / Ivy

The newest version!
package org.comroid.api;

import org.jetbrains.annotations.Nullable;

public interface Factory extends ParamFactory {
    int counter();

    @Override
    default T create(@Nullable Object possiblyIgnored) {
        return create();
    }

    T create();

    abstract class Abstract extends ParamFactory.Abstract implements Factory {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy