/* * $Id: template-c 7524 2006-02-07 23:18:55Z wohler $ * * Copyright (C) 2000 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 $Revision: 7524 $ $Date: 2006-02-07 15:18:55 -0800 (Tue, 07 Feb 2006) $ * * @author Bill Wohler <wohler@newt.com> */ public class [CLASS] extends [CLASS] implements [CLASS] { /** * RMI version. Since the default is too sensitive to changes, set this * to the release number (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 }