1 package tests.jfun.models;2 3 public class UseCollection {4 public final Object host;5 6 public UseCollection(Object collection_containing_me) {7 super();8 // TODO Auto-generated constructor stub9 this.host = collection_containing_me;10 }11 12 public Object getHost() {13 return host;14 }15 }16