/* * @(#)AbstractMovie.java 1.0 2011-09-01 * * Copyright (c) 2011 Werner Randelshofer, Goldau, Switzerland. * All rights reserved. * * You may not use, copy or modify this file, except in compliance with the * license agreement you entered into with Werner Randelshofer. * For details see accompanying license terms. */ package org.monte.media; import org.monte.media.beans.AbstractBean; /** * {@code AbstractMovie}. * * @author Werner Randelshofer * @version 1.0 2011-09-01 Created. */ public abstract class AbstractMovie extends AbstractBean implements Movie { }