1: /** 2: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3: */package net.sourceforge.pmd.util; 4: 5: public interface UnaryFunction<E> { 6: void applyTo(E o); 7: }