]> gerrit.simantics Code Review - simantics/platform.git/blob - scenegraph/utils/InitValueSupport.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / scenegraph / utils / InitValueSupport.java
1 package org.simantics.scenegraph.utils;
2
3 /**
4  * This interface provides method for initializing scene graph node with default values.
5  * This interface should be only implemented by nodes that are aware of their default values.
6  * 
7  */
8 public interface InitValueSupport {
9         public void initValues();
10 }