Created
November 12, 2015 11:17
-
-
Save bragboy/17921e6e973217b8ceec to your computer and use it in GitHub Desktop.
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 nasa.implementation; | |
| import nasa.main.ISignal; | |
| public class TestSignal implements ISignal { | |
| private String bounds = "5 5"; | |
| private String data = "LMLMLMLMM"; | |
| private String initalPos = "2 2 N"; | |
| public String getBounds() { | |
| return bounds; | |
| } | |
| public String getData() { | |
| return data; | |
| } | |
| public String getInitialPos() { | |
| return initalPos; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment