Class Schedule.Result

  • Enclosing class:
    Schedule

    public static class Schedule.Result
    extends java.lang.Object
    Common result structure for scheduling functions
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String comment  
      private boolean result  
    • Constructor Summary

      Constructors 
      Constructor Description
      Result​(java.lang.String commentIn, boolean resultIn)
      Construct a new Result
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getComment()
      Human readable comment
      boolean getResult()
      boolean indicating success
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • comment

        private java.lang.String comment
      • result

        private boolean result
    • Constructor Detail

      • Result

        public Result​(java.lang.String commentIn,
                      boolean resultIn)
        Construct a new Result
        Parameters:
        commentIn - Human readable comment
        resultIn - boolean indicating success
    • Method Detail

      • getResult

        public boolean getResult()
        boolean indicating success
        Returns:
        boolean indicating success
      • getComment

        public java.lang.String getComment()
        Human readable comment
        Returns:
        Human readable comment