com.sta.mlogger.IMessageBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtools Show documentation
Show all versions of xtools Show documentation
Executable tools for all projects.
package com.sta.mlogger;
/**
* Name: IMessageBuilder
* Description: Interface f?r Klassen, die einen Text, der ggf. aus
* komplexeren String-Konstruktionen besteht, erst dann ermitteln und damit die
* String-Konstruktionen ausf?hren, wenn der Text tats?chlich ben?tigt wird.
*
* Comment: ...
*
* Copyright: Copyright (c) 2017
* Company: >StA-Soft<
* @author StA
* @version 1.0
*/
public interface IMessageBuilder
{
/**
* Text ermitteln.
* @return Text
*/
String getMessage();
}