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


/**
 * The HepRep Converter interface.
 *
 *
 * @author Mark Donszelmann
 * @version $Id: HepRepConverter.java,v 1.4 2004/07/26 20:30:42 duns Exp $
 * @deprecated use hep.graphics.heprep.HepRepProvider instead.
 */
public interface HepRepConverter {

    /**
     * Returns true if the given objectClass can be converted to a HepRep.
     * @deprecated use hep.graphics.heprep.HepRepProvider instead.
     */
    public boolean canHandle(Class objectClass);

    /**
     * Returns the converted HepRep from the given object.
     * @deprecated use hep.graphics.heprep.HepRepProvider instead.
     */
    public HepRep convert(Object object);  
} 

