* Initializes an instance of this factory.
* This extracts the existing factory from the dictionary, wraps it, and updates it.
* @param dictionary the object dictionary to install into, not null
*/
public static void init(final FudgeObjectDictionary dictionary) {
FudgeBuilderFactory factory = new InnerClassFudgeBuilderFactory(dictionary.getDefaultBuilderFactory());
dictionary.setDefaultBuilderFactory(factory);
}