]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.modeling/src/org/simantics/modeling/ImmutableComponentVariableContent.java
Multiple readers and variable optimization
[simantics/platform.git] / bundles / org.simantics.modeling / src / org / simantics / modeling / ImmutableComponentVariableContent.java
1 package org.simantics.modeling;
2
3 import java.util.Map;
4
5 import org.simantics.db.Resource;
6
7 public class ImmutableComponentVariableContent {
8
9         final public Resource resource;
10         final public String name;
11         public Map<String,ImmutableComponentVariableContent> children;
12         public Map<String,ImmutableComponentPropertyContent> properties;
13         
14         ImmutableComponentVariableContent(Resource resource, String name) {
15                 this.resource = resource;
16                 this.name = name;
17         }
18         
19 }