If you are going to create an array of Film objects (as in Film[]) then you would call the getter and setter methods of a specific Film within the array like:
filmList[i].getStatus();
where filmList is your Film array and i is the index of the specific Film in the array.
solved How does a boolean variable work in an object array