Interface IntProcedure

All Known Implementing Classes:
IntProcedureEntriesList, IntProcedureEntriesStack

public interface IntProcedure
Interface that defines a procedure to be executed, that takes an int parameter (as modeled after the COLT IntProcedure)
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    execute(int id)
     
  • Method Details

    • execute

      boolean execute(int id)
      Parameters:
      id - integer value
      Returns:
      flag to indicate whether to continue executing the procedure. Return true to continue executing, or false to prevent any more calls to this method.