39edb17f7ac6c555244532616177f8b1685d9cd1
[org.ibex.jinetd.git] / src / org / ibex / jinetd / Watcher.java
1 package org.ibex.jinetd;
2 import org.ibex.util.*;
3 import java.io.*;
4 import java.util.*;
5
6 public abstract class Watcher extends Watched {
7     protected Watcher(String path) { super(path); }
8     public Watcher watcher() { return this; }
9     public abstract void changed(Watched w);
10     public synchronized void scan() throws IOException { super.scan(); }
11 }