package org.simantics.interop.mapping.data; /** * * * @author Marko Luukkainen * */ public interface Identifiable { /** * Returns object of given class, or null. * * Used classes: * Resource * Resource[] * String * * @param * @param clazz * @return */ public T getAdapter(Class clazz); public Identifiable merge(Identifiable other); }