Staging
v0.5.0
swh:1:snp:508923e52305fedd5556b26d8042e0ec70598cef
Raw File
ObjectFactory.java
package org.pulloid;

public interface ObjectFactory<T> {
	
	T createObject();

}
back to top