html RoboWhisperer Ethics Committee

RoboWhisperer Ethics Committee

Sub-Committee of Robot Whisperer Training and Certification

Important Documents:

This is not a real committee, but it should be. Please don't sue us.

	// Robotic Protocol 1.0 Specification
	// (c) 2023 RoboWhisperer Ethics Committee

	public class RoboWhisperer {
		private int id;
		private String name;
		private boolean isGoodBoy;

		public RoboWhisperer(int id, String name) {
			this.id = id;
			this.name = name;
			this.isGoodBoy = true;
		}

		public boolean isGoodBoy() {
			return this.isGoodBoy;
		}

		public void doGoodThing() {
			// TODO: implement doing good things
		}
	}