aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs183/442425/IEntityController.java
blob: 8391db8343816363159b1912b4df61f68b2b4af1 (plain)
1
2
3
4
5
public interface IEntityController<T> {
  void setEntity(T entity);

  T getEntity();
}