Class DefaultSymbolTable.DefaultParameter

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()
      The name of the parameter
      boolean isInput()
      Answer whenether or not the parameter is input to the module.
      boolean isOutput()
      Answer whenether or not the parameter is output to the module.
      void setIsInput​(boolean value)  
      void setIsOutput​(boolean value)  
      void setName​(java.lang.String name)  
      • Methods inherited from class java.lang.Object

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

      • setName

        public void setName​(java.lang.String name)
      • isInput

        public boolean isInput()
        Answer whenether or not the parameter is input to the module.
        Specified by:
        isInput in interface Module.Parameter
        Returns:
        true if the parameter is input, false otherwise
      • setIsInput

        public void setIsInput​(boolean value)
      • isOutput

        public boolean isOutput()
        Answer whenether or not the parameter is output to the module.
        Specified by:
        isOutput in interface Module.Parameter
        Returns:
        true if the parameter is output, false otherwise
      • setIsOutput

        public void setIsOutput​(boolean value)