]> git.argeo.org Git - gpl/argeo-slc.git/blob - org.argeo.slc.core/src/main/java/org/argeo/slc/core/structure/StructurePath.java
Improve XML and XSD for test results
[gpl/argeo-slc.git] / org.argeo.slc.core / src / main / java / org / argeo / slc / core / structure / 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 }