17,22,-6,11,5 MyLL:null MyLL: 17->null MyLL: 22->17->null MyLL: -6->22->17->null MyLL: 11->-6->22->17->null MyLL: 5->11->-6->22->17->null MyLL.addtofront (112); head = new LinkedListNode (112,head); my head is presently pointing to the 5 node. My brand new Linked List Node will have a value of 5 and the next pointer will point to the 5 node (because that's where the head pointer is). Then I will reset head to the new node. So head will point to the 112 node. And 112 already points to the 5 node, and so forth. MyLL: 112->5->11->-6->22->17->null We call 'em "gets" and "sets" or "getters" and "setters", but what is the "proper" term for these methods? "accessors" and "mutators".