main
1namespace jive
2{
3  public interface Factory<out T>
4  {
5    T create();
6  }
7}