/** * This class provides methods to create a comic strip for Homework 4. * @author * @date * * * */ public class ComicStrip extends SimplePicture { /** * This constructor that takes the width and height * of the comic strip and creates a blank image. * * @param width the width of the desired picture * @param height the height of the desired picture * * DO NOT MODIFY */ public ComicStrip( int width, int height ) { super( width, height ); } public void createStrip() { // ... fill in the blank } // You should include at least two other "helper" methods that are // called by createStrip() to do its job }