]> git.argeo.org Git - gpl/argeo-slc.git/blob - StructurePath.java
452dc951472163d44783e9ac83ae51e0fe18507a
[gpl/argeo-slc.git] / StructurePath.java
1 package org.argeo.slc.core.structure;
2
3 /**
4 * Path allowing to uniquely identify a <code>StructureElement</code> within a
5 * registry.
6 *
7 * @see StructureElement
8 * @see StructurePath
9 */
10 public interface StructurePath {
11 /**
12 * Unique representation as a string. Most implementation will also provide
13 * a mean to interpret this string.
14 */
15 public String getAsUniqueString();
16 }