Class ArchiveMemberHandler

    • Method Detail

      • finish

        public void finish()
        Description copied from interface: Substitutable
        Called at the completion of the substitution process to perform post operation. For e.g closing of reader/writer, cleaning of the temporary data... etc.
        Specified by:
        finish in interface Substitutable
      • getName

        public String getName()
        Description copied from interface: Substitutable
        Gets the processing entity name on which string substitution operation is carrying on.
        Specified by:
        getName in interface Substitutable
        Returns:
        Name of the entity.
      • getReader

        public Reader getReader()
        Description copied from interface: Substitutable
        Gets the character stream from the input.

        Implementation note: It is a good idea for the input stream to be buffered.

        Specified by:
        getReader in interface Substitutable
        Returns:
        A Reader.
      • getWriter

        public Writer getWriter()
        Description copied from interface: Substitutable
        Gets the Writer object to write the character stream in to the output.

        Implementation note: It is a good idea for the output stream to be buffered.

        Specified by:
        getWriter in interface Substitutable
        Returns:
        A Writer.