(keystroke) logger. I'm hoping this is what you wanted.
# 2 on the right goes to zipties
Hope this helps sorry if it does not
Answer:
public class SingleItemBox { // class definition
SingleItemBox( Point [] item){
box = item; // the constructor method is initiallized with a box variable
}
static getItem( ) {
return this.box // the getter method to return the box item
}
}
Explanation:
The java class SingleItemBox is defined as well as its constructor and a getter method.