]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.spreadsheet.graph/src/org/simantics/spreadsheet/graph/SheetNode.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.spreadsheet.graph / src / org / simantics / spreadsheet / graph / SheetNode.java
1 package org.simantics.spreadsheet.graph;
2
3 import java.util.Map;
4
5 public interface SheetNode<Child extends SheetNode<?, ?>, Property extends SheetNode<?, ?>> {
6
7         String getName();
8         Map<String, Child> getChildren();
9         Map<String, Property> getProperties();
10         
11 }