Class PreprocessTask.Global

  • Enclosing class:
    PreprocessTask

    @ImplementationNote("It is mutable and with default constructor for calls from ANT")
    public static class PreprocessTask.Global
    extends java.lang.Object
    Inside class describes a "global" item, it describes a global variable which will be added into the preprocessor context It has attributes "name" and "value", be careful in the value attribute usage because you have to use """ instead of \" symbol inside string values
    • Field Summary

      Fields 
      Modifier and Type Field Description
      private java.lang.String name  
      private java.lang.String value  
    • Constructor Summary

      Constructors 
      Constructor Description
      Global()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String getName()  
      java.lang.String getValue()  
      void setName​(java.lang.String name)  
      void setValue​(java.lang.String value)  
      • Methods inherited from class java.lang.Object

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

      • name

        private java.lang.String name
      • value

        private java.lang.String value
    • Constructor Detail

      • Global

        public Global()
    • Method Detail

      • setName

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

        public java.lang.String getName()
      • setValue

        public void setValue​(java.lang.String value)
      • getValue

        public java.lang.String getValue()