]> git.argeo.org Git - gpl/argeo-slc.git/blob - runtime/org.argeo.slc.specs/src/main/java/org/argeo/slc/core/structure/tree/TreeSRelated.java
Introduce org.argeo.slc.specs
[gpl/argeo-slc.git] / runtime / org.argeo.slc.specs / src / main / java / org / argeo / slc / core / structure / tree / TreeSRelated.java
1 package org.argeo.slc.core.structure.tree;
2
3 import org.argeo.slc.core.structure.StructureAware;
4 import org.argeo.slc.core.structure.StructureElement;
5 import org.argeo.slc.core.structure.StructureRegistry;
6
7 public interface TreeSRelated extends StructureAware<TreeSPath> {
8 public TreeSPath getBasePath();
9
10 public StructureRegistry<TreeSPath> getRegistry();
11
12 public StructureElement getStructureElement(String key);
13 }