Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Q: To what extent should we clean up the style in the Traffic Simulator project?
- A: Any new classes you write should conform to class coding std.
- Any classes you don't touch, don't have to conform.
- Any modified code should conform (at the method level).
- Q: I know in class, you mentioned modifying the CADSimulator to take a command line argument of the config file class path that it needed,
- A:No, it's not a command line argument, it's a VM argument.
- Q: however I noticed on the updated project specification you ask that we not modify the main() method.
- "The instructor's automated tests will NOT run the main() method, so don't add any code to this method."
- Which would you prefer we do? Thanks.
- A: Don't add any code crucial to running the application. You can omit the setProperty, for example.
- Q:For the CADSimulator in the project are we supposed to modify the main method to read from any config file?
- A: No.
- Q: Or are we staying with the config file that is already in use?
- A: You are to add the UserInterface key.
- Q: Is the project supposed to be using command line arguments at all for using the console or the gui?
- A: No, but it may use VM arguments.
- Q: Where do we wire our Observer/Observable if not in main()?
- A: In CADSimulator constructor.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement