Package pl.edu.icm.unity.engine.api.msg
Interface MessageManagement
-
public interface MessageManagement
Management of messages- Author:
- P.Piernik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addMessage(Message message)
List<Message>
getAllMessages()
List<Message>
getMessages(String name)
void
removeMessage(String name)
void
removeMessage(String name, Locale locale)
void
updateMessage(Message message)
-
-
-
Method Detail
-
addMessage
void addMessage(Message message) throws EngineException
- Throws:
EngineException
-
updateMessage
void updateMessage(Message message) throws EngineException
- Throws:
EngineException
-
removeMessage
void removeMessage(String name, Locale locale) throws EngineException
- Throws:
EngineException
-
removeMessage
void removeMessage(String name) throws EngineException
- Throws:
EngineException
-
getAllMessages
List<Message> getAllMessages() throws EngineException
- Throws:
EngineException
-
getMessages
List<Message> getMessages(String name) throws EngineException
- Throws:
EngineException
-
-