]> git.argeo.org Git - gpl/argeo-slc.git/blob - core/structure/StructureAware.java
Prepare next development cycle
[gpl/argeo-slc.git] / 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 }