information-system-model/src/main/java/org/gcube/informationsystem/tree/NodeInformation.java

12 lines
219 B
Java

package org.gcube.informationsystem.tree;
import java.util.Set;
public interface NodeInformation<T> {
public abstract String getIdentifier(T t);
public abstract Set<String> getParentIdentifiers(T root, T t);
}