/*
 * Copyright (C) 2000, 2021  Newt Software
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version 2
 * of the License, or (at your option) any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can find it at
 * http://www.gnu.org/copyleft/gpl.html or write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

package com.newt.[PACKAGE];

import [CLASS];

/**
 * [SYNOPSIS].
 * 
 * [DESCRIPTION].
 *
 * @see [CLASS]
 *
 * @version TODO
 *
 * @author Bill Wohler &lt;wohler&#64newt.com>
 */

public class [CLASS] extends [CLASS] implements [CLASS] {
    /**
     * RMI version. Since the default is too sensitive to changes, set this
     * to the release number or date (e.g., x.y.z.t -> xxyyzzttL).
     */
    private static final long serialVersionUID = 00010000L;

    
    /**
     * [SYNOPSIS].
     *
     * [DESCRIPTION].
     * 
     * @param [ARG] [DESCRIPTION]
     */
    public [CLASS]() {
        super();
    }

    
    // [APPROPRIATE HEADER FOR FUNCTIONAL GROUP OF METHODS SUCH AS:
    // Display Methods
    // ActionListener Interface]

    /**
     * [SYNOPSIS].
     *
     * [DESCRIPTION].
     *
     * @param [ARG] [DESCRIPTION]
     *
     * @throws [EXCEPTION] [DESCRIPTION]
     *
     * @return [DESCRIPTION]
     */
    [PROTECTION & TYPE] [METHOD]() throws [CLASS] [,...] {
    }

    
    // Inner Classes
}
