com.mxgraph.swing.util.mxMouseAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jgraphx Show documentation
Show all versions of jgraphx Show documentation
JGraphX is a Java Swing diagramming (graph visualisation) library
/**
* Copyright (c) 2008, Gaudenz Alder
*/
package com.mxgraph.swing.util;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
/**
*
*/
public class mxMouseAdapter implements MouseMotionListener, MouseListener
{
/**
*
*/
private static final long serialVersionUID = -6413162217897819199L;
/**
*
*/
public void mouseDragged(MouseEvent e)
{
// empty
}
/**
*
*/
public void mousePressed(MouseEvent e)
{
// empty
}
/**
*
*/
public void mouseReleased(MouseEvent e)
{
// empty
}
/**
*
*/
public void mouseMoved(MouseEvent e)
{
// empty
}
/**
*
*/
public void mouseClicked(MouseEvent e)
{
// empty
}
/**
*
*/
public void mouseEntered(MouseEvent e)
{
// empty
}
/**
*
*/
public void mouseExited(MouseEvent e)
{
// empty
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy