source: java/main/src/main/java/com/framsticks/remote/NodeListener.java @ 77

Last change on this file since 77 was 77, checked in by psniegowski, 11 years ago

Add new java codebase.

File size: 297 bytes
Line 
1package com.framsticks.remote;
2
3import com.framsticks.core.ListChange;
4import com.framsticks.core.Path;
5
6/**
7 * @author Piotr Sniegowski
8 */
9public interface NodeListener {
10    void onUpgrade(Path path);
11    void onChange(Path path);
12    void onChildChange(Path path, ListChange.Action action);
13}
Note: See TracBrowser for help on using the repository browser.