001 package org.apache.tapestry.enhance; 002 003 /** 004 * 005 */ 006 public interface GenericService<E> { 007 008 void doFoo(E bar); 009 010 E getCurrentFoo(); 011 }