Advertisement
Guest User

Untitled

a guest
Jan 18th, 2013
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.18 KB | None | 0 0
  1. public interface IFoo
  2. {
  3.      int FooFunction();
  4. }
  5.  
  6. public abstract class FooImplementer implements IFoo
  7. {
  8.     public int FooFunction()
  9.     {
  10.         return IFoo.class.FooFunction();
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement