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

com.mxgraph.swing.util.mxMouseAdapter Maven / Gradle / Ivy

Go to download

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