KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > sourceforge > pmd > util > UnaryFunction


1 /**
2  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3  */

4 package net.sourceforge.pmd.util;
5
6 public interface UnaryFunction {
7     void applyTo(Object JavaDoc o);
8 }
9
Popular Tags