// AID-GENERATED
// =========================================================================
// This class was generated by AID - Abstract Interface Definition          
// DO NOT MODIFY, but use the org.freehep.aid.Aid utility to regenerate it. 
// =========================================================================

// Copyright 2000-2002, FreeHEP.
package hep.graphics.heprep;


/**
 * HepRepAction interface.
 *
 * @author Mark Donszelmann
 */
public interface HepRepAction {

    /**
     * Returns name of this action.
     *
     * @return name of this action.
     */
    public String getName();

    /**
     * Returns expression associated with this action.
     *
     * @return expression of this action.
     */
    public String getExpression();

    /**
     * Returns a deep copy of this action.
     *
     * @return copy of this action.
     * @throws CloneNotSupportedException if copying is not possible.
     */
    public HepRepAction copy() throws CloneNotSupportedException;
} // class or interface

