Interface AccionVerticeGrafica<T>

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AccionVerticeGrafica<T>
Interfaz para realizar acciones sobre vértices de gráficas.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Realiza una acción sobre un vértice de gráfica.
  • Method Details

    • actua

      void actua(VerticeGrafica<T> vertice)
      Realiza una acción sobre un vértice de gráfica.
      Parameters:
      vertice - el vértice sobre el que se realizará la acción.