2026-03-17 13:31:18 -07:00

6 lines
103 B
Java

package com.tridium.util;
public interface IFactory {
Object make(Object obj) throws Exception;
}