// Copyright 2000-2004, FreeHEP.

package hep.graphics.heprep1.ref;

import java.io.Serializable;

import hep.graphics.heprep1.*;

/**
 *
 * @author M.Donszelmann
 *
 * @version $Id: DefaultHepRepAttDef.java,v 1.1 2004/07/18 08:19:46 duns Exp $
 */

public class DefaultHepRepAttDef implements HepRepAttDef, Serializable {
    public static final String cvsId = "$Id: DefaultHepRepAttDef.java,v 1.1 2004/07/18 08:19:46 duns Exp $";

    private String name, desc, type, extra;

    public DefaultHepRepAttDef(String name, String desc, String type, String extra) {
        this.name = name;
        this.desc = desc;
        this.type = type;
        this.extra = extra;
    }
    
    public String getName() {
        return name;
    }
    
    public String getDescription() {
        return desc;
    }
    
    public String getType() {
        return type;
    }
        
    public String getExtra() {
        return extra;
    }
}

