package org.simantics.scenegraph.utils; /** * This interface provides method for initializing scene graph node with default values. * This interface should be only implemented by nodes that are aware of their default values. * */ public interface InitValueSupport { public void initValues(); }