public interface PicManCommonFacade
Modifier and Type | Method and Description |
---|---|
void |
addError(java.lang.Throwable t)
Add an entry to the Error Log.
|
void |
addSetChangedListener(SetChangedListener setChangedListener)
Add this SetChangedListener to the global notification list.
|
void |
addSyncToLog(SyncLogEntry sle)
Add a sync entry to the log
|
void |
emptyErrorLog()
Delete any entries in the Error Log
|
void |
fireSetSizeChanged(SetSize setSize)
A set, or the contents of a set, has changed
|
java.lang.Throwable |
getError(int index)
Fetch an error from our table
|
java.util.List<java.lang.Throwable> |
getErrorLog()
Get a Reference to the Error Log
|
java.util.LinkedList<SyncLogEntry> |
getSyncLog()
Return a reference to the sync log
|
int |
getSyncLogMaxCount()
Get the maximum displayed sync log lines in the status page.
|
void |
removeSetChangedListener(SetChangedListener setChangedListener)
Remove this SetChangedListener from the global notification list.
|
void addError(java.lang.Throwable t)
t
- The Throwable to be logged.java.util.List<java.lang.Throwable> getErrorLog()
java.lang.Throwable getError(int index)
index
- The table indexvoid emptyErrorLog()
java.util.LinkedList<SyncLogEntry> getSyncLog()
void addSyncToLog(SyncLogEntry sle)
sle
- The SyncLogEntry to addint getSyncLogMaxCount()
void addSetChangedListener(SetChangedListener setChangedListener)
setChangedListener
- The Object who wishes to be notified when a set changesvoid removeSetChangedListener(SetChangedListener setChangedListener)
setChangedListener
- The Object who no longer wishes to be notified of changes.void fireSetSizeChanged(SetSize setSize)
setSize
- The set and size that has changed