mirror of
https://github.com/michaelrausch/Party-Parrots-At-Sea.git
synced 2026-05-09 14:28:43 +00:00
ff6bfc9516
- Important annotations can be selected, the live view updates in real time - Change local time text colour to white - Split the important annotations state into a separate class Tags: #story[926]
17 lines
547 B
Java
17 lines
547 B
Java
package seng302.controllers.annotations;
|
|
|
|
/**
|
|
* An ImportantAnnotationDelegate handles updating the important annotations
|
|
* displayed to the user on behalf of the ImportantAnnotationController
|
|
*/
|
|
public interface ImportantAnnotationDelegate {
|
|
/**
|
|
* The important annotations have been changed, update the
|
|
* annotations displayed to the user
|
|
* @param importantAnnotationsState The current state of the selected annotations
|
|
*/
|
|
void importantAnnotationsChanged(ImportantAnnotationsState importantAnnotationsState);
|
|
|
|
|
|
}
|