Interface RootProjectProvider


public interface RootProjectProvider
Optional ability of a project to determine its root project (farthest parent), or return self if it is a root project by itself.
Since:
1.79
  • Method Summary

    Modifier and Type
    Method
    Description
    Implementations should return the farthest known parent project of this project or this if this project itself a root project or there is no known root project (so this project shall be considered as root).
  • Method Details

    • getRootProject

      Project getRootProject()
      Implementations should return the farthest known parent project of this project or this if this project itself a root project or there is no known root project (so this project shall be considered as root).
      Returns:
      the farthest known parent or self.