16 lines
214 B
Java
Raw Normal View History

package com.iluwatar.nullobject;
2015-03-04 22:59:42 +02:00
/**
*
* Interface for binary tree node.
*
*/
public interface Node {
String getName();
int getTreeSize();
Node getLeft();
Node getRight();
void walk();
}