All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.maizegenetics.plugindef.PluginEvent Maven / Gradle / Ivy

Go to download

TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage disequilibrium.

The newest version!
/*
 * PluginEvent.java
 *
 */
package net.maizegenetics.plugindef;

import java.util.EventObject;

/**
 *
 * @author Terry Casstevens
 */
public class PluginEvent extends EventObject {

    private final Object myMetaData;

    /**
     * Creates a new instance of PluginEvent
     */
    public PluginEvent(DataSet source) {
        this(source, null);
    }

    /**
     * Creates a new instance of PluginEvent
     */
    public PluginEvent(DataSet source, Object metaData) {
        super(source == null ? new DataSet((Datum) null, null) : source);
        myMetaData = metaData;
    }

    public Object getMetaData() {
        return myMetaData;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy