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

JSci.instruments.ROIAdapter Maven / Gradle / Ivy

Go to download

JSci is a set of open source Java packages. The aim is to encapsulate scientific methods/principles in the most natural way possible. As such they should greatly aid the development of scientific based software. It offers: abstract math interfaces, linear algebra (support for various matrix and vector types), statistics (including probability distributions), wavelets, newtonian mechanics, chart/graph components (AWT and Swing), MathML DOM implementation, ... Note: some packages, like javax.comm, for the astro and instruments package aren't listed as dependencies (not available).

The newest version!
package JSci.instruments;

import java.awt.*;
import java.awt.event.*;

/** A Region Of Interest class adapter
*/

public abstract class ROIAdapter extends MouseMotionAdapter implements ROI, MouseListener, MouseMotionListener {
    public abstract Shape getShape();
    public abstract void setComponent(Component c);
    public abstract void paint(Graphics g);
    public void mouseReleased(MouseEvent e) {}
    public void mousePressed(MouseEvent e) {}
    public void mouseExited(MouseEvent e) {}
    public void mouseEntered(MouseEvent e) {}
    public void mouseClicked(MouseEvent e) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy