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

15 lines
246 B
Java

package org.gcube.informationsystem.tree;
import java.util.Set;
/**
* @author Luca Frosini (ISTI - CNR)
*/
public interface NodeInformation<T> {
public String getIdentifier(T t);
public Set<String> getParentIdentifiers(T root, T t);
}