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 AptSpringProcessor Show documentation
Show all versions of AptSpringProcessor Show documentation
This project contains the apt processor that implements all the checks enumerated in @Verify. It is a self contained, and
shaded jar.
The newest version!
/**
* 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