Interface LinkOutput

  • All Known Implementing Classes:
    LinkOutputImpl

    @Deprecated
    public interface LinkOutput
    Deprecated.
    Stores output of a link.

    This is NOT part of any supported API. If you write code that depends on this, you do so at your own risk. This code and its internal interfaces are subject to change or deletion without notice.

    Since:
    1.5
    • Method Summary

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      void append​(java.lang.Object o)
      Deprecated.
      Append the given object to the output.
      void insert​(int offset, java.lang.Object o)
      Deprecated.
      Insert the given object into the output sequence.
    • Method Detail

      • append

        void append​(java.lang.Object o)
        Deprecated.
        Append the given object to the output.
        Parameters:
        o - the object to append.
      • insert

        void insert​(int offset,
                    java.lang.Object o)
        Deprecated.
        Insert the given object into the output sequence.
        Parameters:
        offset - the offset.
        o - the object to be inserted.