1: package org.conform; 2: 3: /** 4: * Initializers are used to create the initial values for the initialization of properties of newly created objects. 5: */ 6: public interface Initializer { 7: Object getValue(); 8: }