.println("XLLServer v0.0.1 - searching current directory for addins...");
final FunctionServer fs = new FunctionServer();
final CompositeFunctionHandler cfh = new CompositeFunctionHandler();
final FunctionInformationHandler fifh = new FunctionInformationHandler();
FileSystemWatcher fsw = new FileSystemWatcher(new File(DIR),
new CallbackAdaptor() {
public void fileAdded(File f) {
registerAddin(f, fifh, cfh);
}
});
cfh.add(fifh);