net.spals.appbuilder.graph.model.IServiceTreeVertex Maven / Gradle / Ivy
The newest version!
package net.spals.appbuilder.graph.model;
import java.util.Optional;
/**
* Interface definition of a vertex
* which appears in a {@link ServiceTree}
* instance.
*
* @author tkral
*/
public interface IServiceTreeVertex extends IServiceDAGVertex {
Optional> getParent();
default boolean isRoot() {
return !getParent().isPresent();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy