Interface Completer

All Superinterfaces:
NodeComponent
All Known Implementing Classes:
Executable, Parameter

public interface Completer extends NodeComponent
A node component which handles completion for the node it's been assigned to.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    complete(Context context, SuggestionAccumulator suggestions, net.orbyfied.j8.util.StringReader reader)
    Should complete the current node string.

    Methods inherited from interface net.orbyfied.j8.command.NodeComponent

    getNode
  • Method Details

    • complete

      void complete(Context context, SuggestionAccumulator suggestions, net.orbyfied.j8.util.StringReader reader)
      Should complete the current node string.
      Parameters:
      context - The context.
      suggestions - The suggestion builder.
      reader - The node to complete.