Skip to content

Instantly share code, notes, and snippets.

View csabatini's full-sized avatar

Caleb Sabatini csabatini

View GitHub Profile
@csabatini
csabatini / Documentary.java
Created April 20, 2013 02:08
Documentary.java
/** PROGRAM ASSIGNMENT 5 Documentary.java
*
* Program Description
* This is the Documentary class, a subclass of the Movie class.
*
*/
package library.films;
public class Documentary extends Movie {
@csabatini
csabatini / Drama.java
Created April 20, 2013 02:07
Drama.java
/** PROGRAM ASSIGNMENT 5 Drama.java
*
* Program Description
* This is the Drama class, a subclass of the Movie class.
*
*/
package library.films;
public class Drama extends Movie {
@csabatini
csabatini / Profitable.java
Last active December 16, 2015 10:59
Profitable.java
/** PROGRAM ASSIGNMENT 5 Profitable.java
*
* Program Description
* This is the Profitable interface, to be implemented in the Movie class
* and inherited by its subclasses.
*
*/
package library.films;
@csabatini
csabatini / Movie.java
Last active February 21, 2019 14:15
Movie.java
/** PROGRAM ASSIGNMENT 5 Movie.java
*
* Program Description
* This is the Movie class, which includes instance variables and instance
* methods that describe the Movie abstract data type.
*
*/
package library.films;