mirror of
https://github.com/itplr-kosit/validator.git
synced 2026-05-25 16:55:39 +00:00
support for XdmNode as Input
cleanup
This commit is contained in:
parent
f9c6248513
commit
a41336e9cf
14 changed files with 227 additions and 38 deletions
21
src/main/java/de/kosit/validationtool/impl/Printer.java
Normal file
21
src/main/java/de/kosit/validationtool/impl/Printer.java
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
package de.kosit.validationtool.impl;
|
||||
|
||||
import java.text.MessageFormat;
|
||||
|
||||
/**
|
||||
* Wrapper for {@link System Systems} printing capability.
|
||||
*
|
||||
* @author Andreas Penski
|
||||
*/
|
||||
public class Printer {
|
||||
|
||||
/**
|
||||
* Writes to standard output channel.
|
||||
*
|
||||
* @param message the message with placeholders
|
||||
* @param params the params.
|
||||
*/
|
||||
public static void writeOut(final String message, final Object... params) {
|
||||
System.out.println(MessageFormat.format(message, params));
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue