Package pl.edu.icm.unity.engine.api.msg
Interface MessageManagement
-
public interface MessageManagementManagement of messages- Author:
- P.Piernik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidaddMessage(Message message)List<Message>getAllMessages()List<Message>getMessages(String name)voidremoveMessage(String name)voidremoveMessage(String name, Locale locale)voidupdateMessage(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
-
-