Created
February 5, 2017 14:40
-
-
Save ygrenzinger/286764cab51288be34a2e930921e9408 to your computer and use it in GitHub Desktop.
Java code snippet for test's part of interview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package interview; | |
/** | |
* Created by yannickgrenzinger on 02/12/2016. | |
*/ | |
public class Executor { | |
private final Printer3D printer = new Printer3D(); | |
private final XMLFileReader reader = new XMLFileReader(); | |
public void execute() { | |
for (Position p : reader.read()) { | |
printer.print(p); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment