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

edu.uci.ics.jung.visualization.control.GraphMouseAdapter Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (c) 2005, The JUNG Authors
 * All rights reserved.
 *
 * This software is open-source under the BSD license; see either "license.txt"
 * or https://github.com/jrtom/jung/blob/master/LICENSE for a description.
 *
 * Created on Jul 6, 2005
 */

package edu.uci.ics.jung.visualization.control;

import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;

/**
 * Simple extension of MouseAdapter that supplies modifier
 * checking
 * 
 * @author Tom Nelson 
 *
 */
public class GraphMouseAdapter extends MouseAdapter {

    protected int modifiers;
    
    public GraphMouseAdapter(int modifiers) {
        this.modifiers = modifiers;
    }
    
    public int getModifiers() {
        return modifiers;
    }

    public void setModifiers(int modifiers) {
        this.modifiers = modifiers;
    }
    
    protected boolean checkModifiers(MouseEvent e) {
        return e.getModifiers() == modifiers;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy