1 2 3 4 5 6 7 8 9 10
package net.transit.impl; import net.transit.type.IType; public interface IConsumer<T extends IType<?, ?>> extends IAcceptor<T> { public boolean canConsume(); }