mirror of
https://github.com/tiennm99/java-design-patterns.git
synced 2026-05-15 04:59:24 +00:00
Changed package naming across all examples.
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
package com.iluwatar.nullobject;
|
||||
|
||||
/**
|
||||
*
|
||||
* Interface for binary tree node.
|
||||
*
|
||||
*/
|
||||
public interface Node {
|
||||
|
||||
String getName();
|
||||
int getTreeSize();
|
||||
Node getLeft();
|
||||
Node getRight();
|
||||
void walk();
|
||||
}
|
||||
Reference in New Issue
Block a user