package org.simantics.scl.compiler.source.repository.procedural; import org.simantics.scl.compiler.types.Type; public class ProceduralValueDefinition { public final Type type; public final String name; public final Object value; public ProceduralValueDefinition(Type type, String name, Object value) { this.type = type; this.name = name; this.value = value; } }