poem.boundary.driven_port.IWriteLines Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of poem-hexagon Show documentation
Show all versions of poem-hexagon Show documentation
A simple example for a hexagonal architecture.
package poem.boundary.driven_port;
/**
* Driven, right side port for writing the lines of a poem to an output device
* outside the hexagon, e.g. the console.
*
* @author b_muth
*
*/
public interface IWriteLines {
void writeLines(String[] strings);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy