class GrafoNodo
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
private int |
value
El valor del nodo.
|
| Constructor and Description |
|---|
GrafoNodo(int value)
Inicializar un nodo.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Devolver el valor del nodo.
|
void |
setValue(int value)
Cambiar el valor del nodo.
|