/**
 * Copyright (C) 1997-1999 Eric Lefevre
 * 
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 */

package org.ericlefevre.project.module;

import java.util.Vector;

/**
 * <P>This class is a base for my Java classes.</P>
 *
 * <P>**&nbsp;See <A HREF="http://travel.to/elefevre">travel.to/elefevre</A> 
 * for updates.&nbsp;**</P>
 *
 * <P>Please report any comment to the author.</P>
 *
 * @version
 * v1.x.y, dd Mmm yyyy
 * <UL>
 * <LI>great enhancement 1</LI>
 * <LI>great enhancement 2</LI>
 * <LI>great enhancement 3</LI>
 * </UL>
 * v1.0, dd Mmm yyyy.
 *
 * @author Eric Lef&egrave;vre
 */

class GenericClass
    extends java.applet.Applet
{
    /** A public variable. */
    public Object object1;

    /** A protected variable. */
    protected Object object2;

    /** A private variable. */
    private Object object3;

    /**
     * Constructs a GenericClass object.
     */
    public GenericClass()
    {
        // body of the constructor
    }

    /**
     * Initializes the application.
     */
    public static void main(String args[])
    {
        // body of the method main
    }

    /**
     * Initializes the applet.
     */
    public void init()
    {
        // body of the method init
    }

    /**
     * Does something.
     * @param argument an argument
     * @return a value comprised between 0 and 0
     * @see GenericClass
     */
    public int myMethod(Object argument)
    {
        // body of the method myMethod
        return 0;
    }


}
