Package com.iizigo.java
Interface ISyncStateListener
-
public interface ISyncStateListener
Synchronized state listener used to listen to when the auto-building is complete and the properties state is synchronized with resources. This is typically used for Undo/Redo.- Author:
- Christopher Mindus
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onSyncStateChanged(boolean isSynchronized)
Called when the sync state changed.
-
-
-
Method Detail
-
onSyncStateChanged
void onSyncStateChanged(boolean isSynchronized)
Called when the sync state changed. Note that this call is not guaranteed to be stable as it could change at almost any time.NOTE: This method is only called from the SWT thread!
- Parameters:
isSynchronized
- The synchronized state.
-
-