package cl.cromer.estructuras; /** * Created by cromer on 7/7/16. */ class GrafoNodo { private int value; public GrafoNodo(int value) { this.value = value; } public int getValue() { return value; } public void setValue(int value) { this.value = value; } }