// Copyright 2004, FreeHEP.
package hep.graphics.heprep1.adapter;

import java.util.*;

import hep.graphics.heprep.HepRepAttValue;
import hep.graphics.heprep.HepRepInstance;
import hep.graphics.heprep.HepRepInstanceTree;
import hep.graphics.heprep.HepRepPoint;
import hep.graphics.heprep.HepRepSelectFilter;
import hep.graphics.heprep.HepRepType;
import hep.graphics.heprep.HepRepTypeTree;

/**
 *
 * @author Mark Donszelmann
 * @version $Id: HepRepInstanceFromHepRepAdapter.java,v 1.2 2004/07/27 21:40:27 duns Exp $
 */
public class HepRepInstanceFromHepRepAdapter extends AbstractHepRepInstanceAdapter {

    public HepRepInstanceFromHepRepAdapter(hep.graphics.heprep1.HepRep heprep1,
                                           HepRepInstance parent,
                                           HepRepType type) {
        super(heprep1, parent, type);
    }
            
    public List/*<HepRepPoint>*/ getPoints() {
        return Collections.EMPTY_LIST;
    }
    
    public Set getAttValuesFromNode() {
        return Collections.EMPTY_SET;
    }
    
    public HepRepAttValue getAttValueFromNode(String lowerCaseName) {
        return null;     
    } 
}
