]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructureAware.java
Various fixes so that SLC example works again
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / structure / StructureAware.java
1 package org.argeo.slc.core.structure;
2
3 /**
4 * Wrapper for an element, which is able to propagate registration to
5 * sub-elements.
6 */
7 public interface StructureAware<T extends StructurePath> {
8 /** Called <b>after</b> registration. */
9 public void notifyCurrentPath(StructureRegistry<T> registry, T path);
10 }