Interface ProjectPath


  • public interface ProjectPath
    Label for "project path", like "main", "test", but could be "it", etc.
    Since:
    2.0.0
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.String getId()
      The label.
      int order()
      Returns the "order" of this path, usable to sort against other instances.
      int reverseOrder()
      Returns the "reverse order" of this path, usable to sort against other instances.
    • Method Detail

      • getId

        java.lang.String getId()
        The label.
      • order

        int order()
        Returns the "order" of this path, usable to sort against other instances. Expected natural order is "main", "test"... (basically like the processing order).
      • reverseOrder

        int reverseOrder()
        Returns the "reverse order" of this path, usable to sort against other instances. Expected natural order is "test", "main"... (basically like the processing order).