public void storeDocument(java.io.File location);
/**
* Add a listener to a particular event chain.
- * See org.vamsas.client.Events for allowed values for EventChain.
- * The EventChain value is passed as the propertyName in the java.bean.PropertyChangeEvent
- * TODO: build our own vamsas Event/Listener model.
+ * See org.vamsas.client.Events for allowed
+ * values for EventChain.
+ * The EventChain value is passed as the
+ * propertyName in the java.bean.PropertyChangeEvent
+ * TODO: extend class to form own vamsas Event/Listener model.
* @param EventChain Name of event. Blank/null registers handler for all events.
* @param evt - event handler function.
*/
public void addVorbaEventHandler(String EventChain, PropertyChangeListener evt);
+ /**
+ * client application calls this to force the
+ * Vorba client to check for updates immediately.
+ *
+ */
+ public void pollUpdate();
}
}
}
+ /* (non-Javadoc)
+ * @see org.vamsas.client.IClient#pollUpdate()
+ */
+ public void pollUpdate() {
+ // TODO wake up UpdateWatcher thread to check for updates.
+
+ }
+
public static void main(String[] args) {
}
}