All Downloads are FREE. Search and download functionalities are using the official Maven repository.

poem.simple.driven_adapter.ConsoleWriter Maven / Gradle / Ivy

There is a newer version: 2.0
Show newest version
package poem.simple.driven_adapter;

import java.util.Objects;

import poem.boundary.driven_port.IWriteLines;

/**
 * Right-side, driven adapter for writing text to the console.
 * 
 * @author b_muth
 *
 */
public class ConsoleWriter implements IWriteLines {
	public void writeLines(String[] lines) {
		Objects.requireNonNull(lines);
		for (String line : lines) {
			System.out.println(line);
		}
		System.out.println("");
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy