Package proguard.util

Class SimpleProcessable

    • Constructor Summary

      Constructors 
      Constructor Description
      SimpleProcessable()
      Creates an uninitialized SimpleProcessable.
      SimpleProcessable​(int processingFlags, java.lang.Object processingInfo)
      Creates an initialized SimpleProcessable.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void addProcessingFlags​(int... flags)
      Adds all given flags to this processable.
      int getProcessingFlags()
      Returns the processing flags.
      java.lang.Object getProcessingInfo()
      Gets the processing information.
      boolean hasProcessingFlags​(int... flags)
      Checks whether all the given flags are set on this processable.
      void removeProcessingFlags​(int... flags)
      Removes all given flags from this processable.
      void setProcessingFlags​(int processingFlags)
      Sets the processing flags.
      void setProcessingInfo​(java.lang.Object processingInfo)
      Sets the processing information.
      • Methods inherited from class java.lang.Object

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

      • processingFlags

        public int processingFlags
      • processingInfo

        public java.lang.Object processingInfo
    • Constructor Detail

      • SimpleProcessable

        public SimpleProcessable()
        Creates an uninitialized SimpleProcessable.
      • SimpleProcessable

        public SimpleProcessable​(int processingFlags,
                                 java.lang.Object processingInfo)
        Creates an initialized SimpleProcessable.
    • Method Detail

      • setProcessingFlags

        public void setProcessingFlags​(int processingFlags)
        Description copied from interface: Processable
        Sets the processing flags.
        Specified by:
        setProcessingFlags in interface Processable
      • addProcessingFlags

        public void addProcessingFlags​(int... flags)
        Adds all given flags to this processable.
      • removeProcessingFlags

        public void removeProcessingFlags​(int... flags)
        Removes all given flags from this processable.
      • hasProcessingFlags

        public boolean hasProcessingFlags​(int... flags)
        Checks whether all the given flags are set on this processable.
      • getProcessingInfo

        public java.lang.Object getProcessingInfo()
        Description copied from interface: Processable
        Gets the processing information.
        Specified by:
        getProcessingInfo in interface Processable
      • setProcessingInfo

        public void setProcessingInfo​(java.lang.Object processingInfo)
        Description copied from interface: Processable
        Sets the processing information.
        Specified by:
        setProcessingInfo in interface Processable