package com.doumee.lib_coremodel.binding.command; /** * A one-argument action. * * @param the first argument type */ public interface BindingConsumer { void call(T t); }