6 lines
91 B
Java
6 lines
91 B
Java
package org.apache.commons.collections;
|
|
|
|
public interface Factory {
|
|
Object create();
|
|
}
|