source: java/main/src/main/java/com/framsticks/core/InstanceListener.java @ 77

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

Add new java codebase.

File size: 237 bytes
Line 
1package com.framsticks.core;
2
3/**
4 * @author Piotr Sniegowski
5 */
6public interface InstanceListener {
7    public void onListChange(Path path, ListChange change);
8    public void onRun(Exception e);
9    public void onStop(Exception e);
10}
Note: See TracBrowser for help on using the repository browser.