package Lect42Review; public abstract class Camera { protected int maxPhotos; protected int availableShots; protected double remainingPower; public int getMaxPhotos() { return maxPhotos; } public int getAvailableShots() { return availableShots; } public String toString() { String result; result = "MaxPhotos: " + maxPhotos + "\n"; result += "Available Shots: " + availableShots; return result; } public abstract void takePicture(); }